$(document).ready(function(){
	//Vertical Sliding
	$('.boxgrid.slidedown').hover(function(){
		$(".cover", this).stop().animate({top:'-255px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'5px'},{queue:false,duration:300});
	});
});
