credo che non sia un problema di template.
onmenu = false; $('#sotto_menu>*').hide(); $(".nome_voce").hover(function(){ $("#sotto_menu").stop().animate({width:'100%'},function(){ $('#sotto_menu>*').fadeIn(); }); },function(){ setTimeout(function(){ if (onmenu) return; $('#sotto_menu>*').fadeOut(function(){ $("#sotto_menu").stop().animate({width:0}); }); }, 500); }); $("#menu").hover(function(){ onmenu=true; },function(){ onmenu=false; $('#menu>*').fadeOut(function(){ $("#menu").stop().animate({width:0}); }); });