(function($){
	$(function(){
		
		
		$('.boxgrid').each(function(){
			var $caption = $(this).find('div.boxcaption');
			var pheight = $(this).height() + 45;
			$caption.css('top', pheight );
			
			$(this).hover(
				function(){
					$caption.stop(1);
					$caption.animate({ top: pheight - $caption.height() - 45 });
				},
				function(){
					$caption.stop(1);
					$caption.animate({ top: pheight	})
				}
			)
		});
	});
})(jQuery);

