
geck.requireScript('js/jquery.ui.js');$(window).load(function(){$('#menu .main-item > .submenu').each(function(){var $wrap=$('<div>');var $submenu=$(this).css('display','block');var height=$submenu.height();$submenu.data('height',height);$wrap.css({overflow:'hidden',position:'absolute',left:$submenu.css('left'),top:$submenu.css('top'),width:600,height:0});$submenu.css({top:'auto',left:0,bottom:0});$submenu.wrap($wrap);});$('#menu .main-item').hover(function(){var height=$('.submenu:first',this).data('height');$('.submenu:first',this).parent().stop().animate({'height':height},800,'easeOutBounce');},function(){$('.submenu:first',this).parent().stop().animate({'height':0},500,'easeInQuad');});$('#menu .sub-item > .lastmenu').each(function(){var $wrap=$('<div>');var $submenu=$(this);var width=0;$submenu.find('.lastmenu-main').children().each(function(){width+=$(this).width();});$submenu.data('width',width);$submenu.find('.lastmenu-main').css('width',width);$(this).css('width','auto');$wrap.css({overflow:'hidden',position:'absolute',left:$submenu.parents('.submenu').width(),top:$submenu.css('top'),width:0,height:$submenu.height()});$submenu.css({left:'auto',top:0,right:0});$submenu.wrap($wrap);});$('#menu .sub-item').hover(function(){var width=$('.lastmenu:first',this).data('width');$('.lastmenu:first',this).parent().stop().animate({width:width},500,'easeOutQuad');},function(){$('.lastmenu:first',this).parent().stop().animate({width:0},500,'easeInQuad');});});
