var d = document, dE = d.documentElement;



function menuHover() {

	var menuItems = d.getElementById("topmenu").getElementsByTagName("LI");



	for (var i = 0, miL = menuItems.length; i < miL; i++) {

		menuItems[i].onmouseover = function() {

		  if (this.className != "sep")

			  this.className = "mnhover";

		}

		menuItems[i].onmouseout = function() {

		  if (this.className != "sep")

			  this.className = "";

		}



		

	}

}







window.onload = function(e) {

	if (d.getElementById) {

		if (d.all) {

			menuHover();

		}

	}

}

