
$(function(){var timer=[];$(".menuBlock a.primayMenu").bind({'mouseover':function(){var index=$(this).index('.menuBlock a.primayMenu');var otherSubmenu=$('div[name="secondMenu_top"]:not(div[name="secondMenu_top"]:eq('+index+'))');var submenu=$('div[name="secondMenu_top"]:eq('+index+')');var bottomImg=$('img[name="secondMenu_bottom"]:eq('+index+')');var arrowImg=$('img.arrow:eq('+index+')');clearTimeout(timer[index]);if(submenu.css('display')!='none')return;if(timer.length>0){for(var i=0;i<timer.length;i++){clearTimeout(timer[i]);timer[i]=null;}}
$(this).parent().css('z-index','100');otherSubmenu.parent().css('z-index','1');otherSubmenu.slideUp(500,function(){$(this).parent().children('img[name="secondMenu_bottom"]').hide();$(this).parent().children('img.arrow').hide();});arrowImg.show();bottomImg.show();submenu.slideDown(500);},'mouseout':function(){var index=$(this).index('.menuBlock a.primayMenu');var submenu=$('div[name="secondMenu_top"]:eq('+index+')');var bottomImg=$('img[name="secondMenu_bottom"]:eq('+index+')');var arrowImg=$('img.arrow:eq('+index+')');if(submenu.css('display')=='none')return;timer[index]=setTimeout(function(){clearTimeout(this);timer[index]=null;submenu.parent().css('z-index','1');submenu.slideUp(500,function(){arrowImg.hide();bottomImg.hide();});},2000);},'focus':function(){$(this).trigger('mouseover');},'blur':function(){$(this).trigger('mouseout');}});$('div[name="secondMenu_top"] a').bind({'mouseover':function(){var el=$(this).parent().parent().children('a.primayMenu');el.trigger('hover');el.trigger('mouseover');},'mouseout':function(){var el=$(this).parent().parent().children('a.primayMenu');el.trigger('mouseout');},'focus':function(){$(this).trigger('mouseover');},'blur':function(){$(this).trigger('mouseout');}});$('a[name="top"]').prop('href','javascript:void(0)');$('a[name="top"]').bind({'keypress':function(){this.trigger('click');},'click':function(){$('html,body').animate({scrollTop:0},800);}});})
