function IEHoverPseudo() {
	var menuItems = document.getElementById("menu").getElementsByTagName("div");
	
	for (var i=0; i<menuItems.length; i++) {
		if (menuItems[i].className=="mbnormal"){
			menuItems[i].onmouseover=function() { this.className += " mbover"; }
			menuItems[i].onmouseout=function() { this.className = "mbnormal"; }
		}
		if (menuItems[i].className=="smbnormal"){
			menuItems[i].onmouseover=function() { this.className += " smbover"; }
			menuItems[i].onmouseout=function() { this.className = "smbnormal"; }
		}
	}
 
}
window.onload = IEHoverPseudo;

