$(document).ready(function(){

				//Image défilante vers la droite
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'250px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				
				$('.titre_effet').hover(function(){
					$(".cover").stop().animate({left:'250px'},{queue:false,duration:300});
				}, function() {
					$(".cover").stop().animate({left:'0px'},{queue:false,duration:300});
				});	
				
				$('.boxgrid2.slideright').hover(function(){
					$(".cover2", this).stop().animate({left:'250px'},{queue:false,duration:300});
				}, function() {
					$(".cover2", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				
				$(window).load(function(){
					$(".cover").stop().animate({left:'250px'},{queue:false,duration:300});
				}, function() {
					$(".cover").stop().animate({left:'0px'},{queue:false,duration:300});
				});
				
});

