navHover1 = function() {
	
	var lis1 = document.getElementById("vnavmenu").getElementsByTagName("LI");
	for (var i=0; i<lis1.length; i++) {
		lis1[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis1[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover1);