$(document).ready(function(){
	$('.boxgrid.caption').hover(function(){
		$(".boxcaption", this).stop().animate({top:'190px'},{queue:false,duration:160});
	}, function() {
		$(".boxcaption", this).stop().animate({top:'240px'},{queue:false,duration:160});
	});
});
