	$(function(){
	
	
	$("#carre1 a")
	.mouseover(function(){
		$(this)
		.stop().animate({backgroundPosition:'0px -300px'},1000);	
		 });
	
	$("#carre1 a")
	.mouseout(function(){
		$(this)
		.stop().animate({backgroundPosition:'0px 0px'},1000);	
		 });
	
	
	$("#carreboutique a")
	.mouseover(function(){
		$(this)
		.stop().animate({backgroundPosition:'0px -300px'},1000);	
		 });
	
	$("#carreboutique a")
	.mouseout(function(){
		$(this)
		.stop().animate({backgroundPosition:'0px 0px'},1000);	
		 });
	
		$("#carrepoterie a")
	.mouseover(function(){
		$(this)
		.stop().animate({backgroundPosition:'0px -300px'},1000);	
		 });
	
	$("#carrepoterie a")
	.mouseout(function(){
		$(this)
		.stop().animate({backgroundPosition:'0px 0px'},1000);	
		 });
		   
});							
								
	
