$(document).ready(function(){
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'91'},{queue:false,duration:80});
	}, function() {
		$(".cover", this).stop().animate({top:'144px'},{queue:false,duration:260});
	});
});

