jQuery(function() {
    jQuery("#menupack ul.menu ul").css({ display: 'none' });
    jQuery("#menupack ul.menu li").hover(function() {
        jQuery(this).find('ul.sub-menu')
            .stop(true, true).delay(70).animate({ "height": "show", "opacity": "show" }, 200 );
    }, function(){
        jQuery(this).find('ul.sub-menu')
            .stop(true, true).delay(70).animate({ "height": "hide", "opacity": "hide" }, 200 );
    });
});
