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