if (typeof document.body.style.maxHeight == "undefined") {
	liHover = function() {
		var liEls = document.getElementById("MENU_TOP").getElementsByTagName("li");
		for (var i=0; i<liEls.length; i++) {
			liEls[i].onmouseover=function() {
				this.className+=" hover";
			}
			liEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" hover\\b"), "");
			}
		}
	}
	if (window.attachEvent) {
    window.attachEvent("onload", liHover);
  }
}

