function IEHoverPseudo() {
 
 	//alert("X");
	var navItems = document.getElementById("nav").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 = "menuparent"; }
		}
		if(navItems[i].className == "menuparentactive") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparentactive"; }
		}
	}
 	initialize();
}

//function loadgoogleandhover() {
//	IEHoverPseudo;
//	
//}
//window.onload = loadgoogleandhover();
window.onload = IEHoverPseudo;
