$(document).ready(function(){

	$("#menu .onglet").hover(
		function () {
			$(this).find(".title").animate({ height: "34px"
			}, 80 );
		}, 
		function () {
			$(this).find(".title").animate({ 
				height: "24px"
			}, 80 );
		}
	);
	
	
	$("#menu .onglet-cv").hover(
		function () {
			$(this).find(".title").animate({ 
				height: "80px"
			}, 250 );
		}, 
		function () {
			$(this).find(".title").animate({ 
				height: "24px"
			}, 80 );
		}
	);

});
