startList = function() {	if (document.all&&document.getElementById) {		navRoot = document.getElementById("submenuTopMenu");		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", "");				}			}		}	}}startListA = function() {		if (document.all&&document.getElementById) {		hoverListElement(document.getElementById("submenuTopMenu"));	}	}function hoverListElement(navRoot) {	if (document.all&&document.getElementById) {		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", "");				}								/* Hovers any nested UL items */				for (j=0; j<node.childNodes.length; j++) {					if (node.childNodes[j].nodeName=="UL") {						hoverListElement(node.childNodes[j]);						//alert("here");					}				}			}		}	}	}window.onload=startList;
