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