$(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);
        }
    );

    $('.panel ul li ul').hide();
    $('.panel ul li:has(ul) > a').click(function() {
     $(this).parent().find('ul').slideToggle(5);
     return false;
     });
});
