IEHover = function() {
	var IEEls = document.getElementById("menue").getElementsByTagName("LI");
	for (var i=0; i<IEEls.length; i++) {
		IEEls[i].onmouseover=function() {
			this.className+=" iehover";
		}
		IEEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", IEHover);
