jQuery(document).ready(function($){

$('.boxgrid.caption1').hover(function(){
	$(".cover",
this).stop().animate({top:'0px', opacity:1},{queue:false,duration:250});
}, function() {
	$(".cover",
this).stop().animate({top:'120px', opacity:0.80},{queue:false,duration:250});
});

});

