$(document).ready(function(){
								
				//Légende totalement cachée / montrée
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:100});
				}, function() {
					$(".cover", this).stop().animate({top:'95px'},{queue:false,duration:100});
				});
				
				//Légende moitié apparente
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:600});
				}, function() {
					$(".cover", this).stop().animate({top:'95px'},{queue:false,duration:600});
				});
				
				//Image défilante vers la droite
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'150px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:200});
				});
								//Image défilante vers le bas
				$('.boxgrid.slidelow').hover(function(){
					$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:200});
				});
					//Image défilante vers le haut
				$('.boxgrid.slidehigh').hover(function(){
					$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:200});
				});
				
				
				//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});
				});


});

