// JavaScript Document

function IEHoverPseudo() {
	var navItems = document.getElementById("mainmenu").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		//if(navItems[i].className == "def") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = this.className.replace("over",""); }
		//}
	}
}
window.onload = IEHoverPseudo;

function popwin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}