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