$(document).ready(function() {
	$('.boxgrid.slide').hover(function(){
		$(".cover",this).stop().animate({left:'100px'},{queue:false,duration:300});
	},function(){
		$(".cover",this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
});
