function menu(){
	var ultags = document.getElementById("gmenu").getElementsByTagName("ul");
		
	for (var t=0; t < ultags.length; t++){		
		ultags[t].parentNode.onmouseover = function(){
			this.className = "menuhover";
			this.style.zIndex = 100;
			this.getElementsByTagName("ul")[0].style.display = "block";
			this.getElementsByTagName("ul")[0].style.visibility = "visible";
			this.getElementsByTagName("ul")[0].style.backgroundImage = "url(../Images/Background/sebmenu_bg.jpg)";
			this.getElementsByTagName("ul")[0].style.zIndex = 100;
		}
			
		ultags[t].parentNode.onmouseout = function(){
			this.className = "menunoactive";
			this.style.zIndex = 0;
			this.getElementsByTagName("ul")[0].style.display = "none";
			this.getElementsByTagName("ul")[0].style.visibility = "hidden";
			this.getElementsByTagName("ul")[0].style.backgroundImage = "url(../Images/Background/sebmenu_bg.jpg)";
			//this.getElementsByTagName("ul")[0].style.backgroundImage = "none";
			this.getElementsByTagName("ul")[0].style.zIndex = 0;
		}
	}
}

if (window.addEventListener){
	window.addEventListener("load", menu, false);
} else if (window.attachEvent) {
	window.attachEvent("onload", menu);
}
