$(document).ready(function() { function megaHoverOver(){ $(this).find(".sub").stop().fadeTo('fast', 1).show(); breite = 0; $(this).find("ul").each(function() { breite += $(this).width(); }); if($(this).find("ul").length > 2) { breite = Math.ceil(breite/2); } breite += 10; $(this).find(".sub").css({'width' : breite}); } function megaHoverOut(){ $(this).find(".sub").stop().fadeTo('fast', 0, function() { $(this).hide(); }); } var config = { sensitivity: 2, interval: 100, over: megaHoverOver, timeout: 500, out: megaHoverOut }; $("ul#megadropdown li .sub").css({'opacity':'0'}); $("ul#megadropdown li").hoverIntent(config); });