$(document).ready(function(){


$(".cover", this).css({top:'-160px'})

	$('.boxgrid.captionfull').hover(function(){
			$(".cover", this).stop().animate({top:'0px'}, {queue:false,duration:100});
		}, function() {
			$(".cover", this).stop().animate({top:'-160px'}, {queue:false,duration:100});
		});		
});
