jQuery(document).ready(function(){
	
	//Remove outline from links
	/*$("a").click(function(){
		$(this).blur();
	});*/
	
	// Hover sur le lien
	jQuery(".menu").mouseover(function(){
		jQuery(this).stop().animate({"top":"-102px", height:'132px'}, { duration: 150 });
	});
	// Quand on est hors de la zone
	jQuery(".menu").mouseout(function(){
		jQuery(this).stop().animate({top:'0px', height:'30px'})
	});

	
	
});
