$(document).ready(function(){
								
				//Légende totalement cachée / montrée
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'209px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'249px'},{queue:false,duration:160});
				});
				$('.boxgrid_open.captionfull_open').hover(function(){
					$(".cover", this).stop().animate({top:'460px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'500px'},{queue:false,duration:160});
				});
				
				//Légende moitié apparente
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'140px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'210px'},{queue:false,duration:160});
				});
				
				//Image défilante vers la droite
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'360px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				
				//Défilement en diagonale
				$('.boxgrid.diagonale').hover(function(){
					$(".cover", this).stop().animate({top:'260px', left:'360px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
				});


});

