ieHover = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	var sel = document.getElementById("hide-this");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" ieHover";
			 if (this.id == "hide" | this.id == "hide2"){
									 sel.style.visibility = 'hidden'; 
       	}
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" ieHover\\b"), "");
		 sel.style.visibility = 'visible'; 
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", ieHover);

