/** JavaScript **/
ieHover = function() {
	var ieLIs = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<ieLIs.length; i++) {
		ieLIs[i].onmouseover=function() {this.className+=" iehover";}
		ieLIs[i].onmouseout=function() {this.className=this.className.replace(' iehover', '');
		}}}
if (window.attachEvent) window.attachEvent("onload", ieHover);
/** end **/