$('ul.menutop').addClass('menutopOverride');var contentWidth=$('ul.menutop').parent().width();var dropdownMenu={};dropdownMenu.CloseTimeout=800;dropdownMenu.ShowTimeout=100;dropdownMenu.ElementClose=0;dropdownMenu.ElementShow=0;dropdownMenu.timer=0;function dropdownHover(){dropdownClose();dropdownClearTimer();}
function dropdownClearTimer(){dropdownMenu.timer=window.clearTimeout(dropdownMenu.timer);}
function dropdownTimer(callback,timeout){dropdownMenu.timer=window.setTimeout(callback,timeout);}
function dropdownClose(){$('ul.menutop > li').not('.openMenu').children('ul').css('left','');}
function dropdownCloseAll(){$('ul.menutop > li').children('ul').css('left','');$('ul.menutop > li').removeClass('openMenu');}
function dropdownShow(){dropdownHover();if(dropdownMenu.ElementShow!=null){var ulWidth=$(dropdownMenu.ElementShow).children('ul:first').width();if($(dropdownMenu.ElementShow).position().left+ulWidth+5>contentWidth)
$(dropdownMenu.ElementShow).children('ul').css('left',contentWidth-$(dropdownMenu.ElementShow).position().left-ulWidth-5);else
$(dropdownMenu.ElementShow).children('ul').css('left',0);}}
$('ul.menutop > li').hover(function(){$(this).addClass('openMenu');dropdownMenu.ElementShow=this;dropdownClearTimer();dropdownTimer('dropdownShow()',dropdownMenu.ShowTimeout);},function(){$(this).removeClass('openMenu');dropdownMenu.ElementShow=null;dropdownClearTimer();dropdownTimer('dropdownClose()',dropdownMenu.CloseTimeout);});$(function(){$(document).bind('click',dropdownCloseAll);$(':input').hover(function(){dropdownTimer('dropdownCloseAll()',dropdownMenu.CloseTimeout);});});