$(document).ready(function() {

	//image horizontal scrolling
	$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'-300px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'10px'},{queue:false,duration:300});
				});

	
});
