
    $(document).ready(function() {

        $('.menu').hover(
            function () { // mouse hover
				$(this).children(".menu_detail").animate({height: 'toggle', opacity: 'toggle' }, 1000);
            },
            function () { // mouse leave
                if(!$(this).hasClass('courant'))    
                {
 					$(this).children(".menu_detail").animate({height: 'toggle', opacity: 'toggle' }, 1000);
					
                }
        });
	
    });

