$(document).ready(function(){
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'200px'},{queue:false,duration:10});
	}, function() {
		$(".cover", this).stop().animate({top:'250px'},{queue:false,duration:10});
	});
});
