$(document).ready(function(){

//Horizontal Sliding
$('.boxgrid.slideright').hover(function(){
$(".cover", this).stop().animate({top:'300px'},{queue:false,duration:500});
	}, function() {
$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
	});


});
