function topMenu(){
	var navItems = document.getElementById("ctl00_MenuControl_TreeView1").getElementsByTagName("li");

	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className != "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = ""; }
		}else{
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}

}

function topLeftMenu(){
	var navItems = document.getElementById("topLeftMenu").getElementsByTagName("li");

	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className != "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = ""; }
		}else{
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}

}
