startList = function() {
// 	document.write('Hello');
 	if (document.all&&document.getElementById) {

		// HIDE JAVASCRIPT ERROR MESSAGE
		errRoot = document.getElementById("err");
 		errRoot.className="js";

		navRoot = document.getElementById("nav");
// 		document.write('gotElement');
		for (i=0; i<navRoot.childNodes.length; i++) {
// 			document.write('navNodes');
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
//  				document.write('liNode');
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
 	}
}

window.onload=startList;
