// IE fix: Set up dropdown navigation menus
startList = function(){
    try {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menuElem");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					// Make sure it has a subnav
					if(this.getElementsByTagName("ul").length > 0){
						subUL = this.getElementsByTagName("ul");
						subUL[0].style.display = 'block';
						//this.className+=" over";
					}
				}
				node.onmouseout=function() {
					// Make sure it has a subnav
					if(this.getElementsByTagName("ul").length > 0){
						subUL = this.getElementsByTagName("ul");
						subUL[0].style.display = 'none';
						//this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
	}catch(vError){
	
	}
}


