jQuery(document).ready(function($){

    $('body').removeClass('no-js');

    $('#megamenu > li').hover(
        function()
        {
            $('.wrapMegamenu', this).stop(true, true).fadeIn(300);    
        },
    
        function()
        {
            $('.wrapMegamenu', this).fadeOut(300);    
        }
    );  

});
