$(function(){	
	/* Animation du menu*/
	$("li").mouseover(function(){
			var h = $(".subMenu a").height()+$(".subMenu a").innerHeight();
			h = h * $(this).children(".subMenu").children("li").size();
			h = h+"px";

			$(this).children(".subMenu").stop().animate({height:h},{queue:false, duration:400, easing: ''});
    });  

	$("li").mouseout(function(){
        	$(this).children(".subMenu").stop().animate({height:'0px'},{queue:false, duration:400, easing: ''});
    });  
});

