function init() 
{
	document.getElementById("menu1").onmouseover = function()
                    {
                        ms.hideCurrent();
                        this.className = "menuhover";
    				}
    
    document.getElementById("menu1").onmouseout = function() { this.className = "menu"; }
    				
}

