

$(document).ready(function(){
	
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'400px'},{queue:false,duration:160}); //Pixel distance height of container element - caption box to show on mouseover
	}, function() {
		$(".cover", this).stop().animate({top:'450px'},{queue:false,duration:160}); //Pixel distance must match height of container element to fully hide caption box
	});
  		$('.boxgrid.captionfull').mouseover(function() {
  		$(this).addClass('active');  
	});
	$('.boxgrid.captionfull').mouseout(function() {
  		$('.boxgrid.captionfull').removeClass('active');  
	});
});

