$(document).ready(function(){
    $('.menu').hover(
        function() {
            $(this).addClass("active");
            $(this).find('.menu-block').stop(true, true);		
            $(this).find('.menu-block').slideDown();
        },
        function() {
            $(this).removeClass("active");
            $(this).find('.menu-block').fadeOut(100);
        }
    );

});
