// JavaScript Document
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("drop");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

//--><!]]>
// protect.js protect pages from right click Javascript document 

function right(e) {

if (navigator.appName == 'Netscape' && 

(e.which == 2 || e.which == 3)) {

alert('Warning: Contents are copyrighted materials.');

return false;

}

else if (navigator.appName == 'Microsoft Internet Explorer' && 

(event.button==2 || event.button == 3)) {

alert('Warning: Contents are copyrighted materials.');

return false;

}

return true;

}

document.onmousedown=right;

if (document.layers) window.captureEvents(Event.MOUSEDOWN);

window.onmousedown=right;

// end 