
$(window).load(function(){var subnavihide="";$("#subnavilist").children("li").bind("mouseenter",function(){window.clearTimeout(subnavihide);$(this).parent("ul").children("li").children("div").css("overflow","hidden");$(this).children("div").css("overflow","visible");});$("ul.secondlevel").children("li").bind("mouseenter",function(){$(this).parent("ul").children("li").children("div").css("overflow","hidden");$(this).children("div").css("overflow","visible");});$("li.firstlevel").bind("mouseleave",function(){window.clearTimeout(subnavihide);subnavihide=window.setTimeout("$('li.firstlevel').children('div').css('overflow', 'hidden')",3000);});$("li.firstlevel").find("li").bind("mouseenter",function(){window.clearTimeout(subnavihide);});});