
var hideMenu=false;var menuVisible=false;var theEffect=null;Event.observe(window,'load',function(){$('menu').observe('mouseover',function(e){var element=e.findElement('li');if(typeof element==='undefined'){return;}
var theId='sub'+element.childElements()[0].id;var otherSubMenus=$$('#submenu-container .submenu').reject(function(el){return el.id==theId});otherSubMenus.invoke('hide');if($(theId)&&!$(theId).visible()&&!theEffect){theEffect=new Effect.SlideDown(theId,{duration:0.5,afterFinish:function(){theEffect=null;}});menuVisible=true;hideMenu=false;}});$('submenu-container').observe('click',function(e){var elem=e.findElement('a.closemenu');if(typeof elem!=='undefined'){hideMenu=true;slideAll();e.stop();}})
$('content').observe('mouseover',function(event){if(event.findElement('.submenu')){hideMenu=false;return;}
if(menuVisible&&!hideMenu){hideMenu=true;window.setTimeout('slideAll()',1500);}});});function slideAll(){if(hideMenu){$$('#submenu-container .submenu').each(function(elem){if(elem.visible()){theEffect=new Effect.SlideUp(elem.id,{duration:0.4,afterFinish:function(){theEffect=null;}});}});menuVisible=false;}}
