dropMenu=function(){if(document.getElementById("mainmenu")){var menuItems=document.getElementById("mainmenu").getElementsByTagName("LI");for (var i=0;i<menuItems.length;i++) {menuItems[i].onmouseover=function(){this.className+=" dropMenu";}; menuItems[i].onmouseout=function(){this.className=this.className.replace(new RegExp(" dropMenu\\b"),"");}}}if (document.getElementById("translate")){menuItems=document.getElementById("translate").getElementsByTagName("LI");for(var i=0;i<menuItems.length;i++){menuItems[i].onmouseover=function() {this.className+=" dropMenu";}; menuItems[i].onmouseout=function(){this.className=this.className.replace(new RegExp(" dropMenu\\b"),"");}}}};if(window.attachEvent)window.attachEvent("onload", dropMenu);
