
startList = function() {
	if (document.all&&document.getElementById) {
	root=document.getElementById("menu");
		for (i=0; i<root.childNodes.length; i++) {
			ul=root.childNodes[i].firstChild.firstChild.firstChild.firstChild;
			for (j=0; j<ul.childNodes.length; j++) {
				li=ul.childNodes[j];
				
					li.onmouseover=function() {
						this.className+=" over";
					}
					li.onmouseout=function() {
 				 		this.className=this.className.replace(" over", "");
   					}
   				
			} 
		}
	}
}
window.onload=startList;