<!--
function hoverHack(){
		var activeMenu = document.getElementById("submenu_1");
		activeMenu.onmouseover=function() {
				this.className='listhover';
		}
		activeMenu.onmouseout=function() {
				this.className=this.className.replace('listhover', '');
		}
	}
if (window.attachEvent) window.attachEvent("onload", hoverHack);
-->