function IEHoverPseudo() {
	
	var navItems = document.getElementById("popmenu").getElementsByTagName("li","ul");
	popmenu.HideDelayTime = 1;	// seconds
	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"; }
		}
		else if (navItems[i].className == "secondparent") {
			navItems[i].onmouseover=function() { this.className += " secondover"; }
			navItems[i].onmouseout=function() { this.className = "secondparent"; }
		}
	}
}



