// JavaScript Document

function show(){
	var menu=document.getElementById('nav2');
	var menu2=document.getElementById('nav5');
	menu.onmouseover=function(){
		this.className+=(this.className.length>0?'':'')+'mhover';
	}
	menu2.onmouseover=function(){
		this.className+=(this.className.length>0?'':'')+'mhover';
	}
	menu.onmouseout=function(){
		this.className=this.className.replace(new RegExp('( ?|^)mhover\\b'),'');
	}
	menu2.onmouseout=function(){
		this.className=this.className.replace(new RegExp('( ?|^)mhover\\b'),'');
	}
	}
window.onload=show; 