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

