$(document).ready(function() {
						   
						   //Légende totalemen cachée
						   $('.boxgrid.captionfull').hover(function() {
																	$(".cover", this).stop().animate({top:'39px'},{queue:false,duration:160});
																	}, function() {
																		$(".cover", this).stop().animate({top:'75px'},{queue:false,duration:160});
																	});
						   })
