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

