$(document).ready(function(){
								
				//Légende totalement cachée / montrée
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'43px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'131px'},{queue:false,duration:160});
				});
				
				//Légende totalement cachée / montrée KRAFT
				$('.kraft.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'65px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'131px'},{queue:false,duration:160});
				});

				//Légende totalement cachée / montrée BLANC
				$('.blanc.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'65px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'131px'},{queue:false,duration:160});
				});
				
				//Légende totalement cachée / montrée SON
				$('.son.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'65px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'131px'},{queue:false,duration:160});
				});
				
				//Légende totalement cachée / montrée FREE
				$('.free.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'65px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'131px'},{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});
				});


});

