// JavaScript Document
$(document).ready(function(){
	
 $('.boxgrid.slideright').hover(function(){
 $(".cover", this).stop().animate({left:'1000px'},{queue:false,duration:700});
}, function() {
 $(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
});