startList = function() {
if (document.all&&document.getElementById) {
	navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			//for (j=0; j<node.childNodes.length; j++) {alert(node.childNodes[j].nodeName);}////////
			if (node.nodeName=="LI") {
				//alert(node.childNodes.length);////////
				//navChild = document.getElementById("navmenu1");//////////
				//alert(navChild);////////
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
 	}
}
window.onload=startList;