var $j = jQuery.noConflict();

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

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