function IEHoverPseudo() {
	var navItems = document.getElementById("primary-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"; }
		}
	}
	
	/*
	var popUpTextLists = document.getElementById("bodyDiv").getElementsByTagName("li");
	for (var i=0; i<popUpTextLists.length; i++) {
		if(popUpTextLists[i].className == "popup") {
			popUpTextLists[i].onmouseover=function() { this.className += " over";}
			popUpTextLists[i].onmouseout=function() { this.className = "popup"; }
		}
	}
	*/
}