var dropdown=function(){

	var uls=document.getElementById("menu").getElementsByTagName("ul");
	for(var i=1;i<uls.length;i++){
		if(navigator.appName=="Microsoft Internet Explorer" && navigator.userAgent.indexOf("Opera")<0){
			uls[i].parentNode.onmouseover=function(){
				if(navigator.appName=="Microsoft Internet Explorer" && navigator.userAgent.indexOf("Opera")<0)this.lastChild.style.display='block';
				this.firstChild.className="act";
			}

			uls[i].onmouseover=function(){
				this.parentNode.firstChild.className="act";
			}

			uls[i].parentNode.onmouseout=function(){
				if(navigator.appName=="Microsoft Internet Explorer" && navigator.userAgent.indexOf("Opera")<0)this.lastChild.style.display='none';
				this.firstChild.className="";
			}
		}
	}
}
window.onload = function() {
	dropdown();
}