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

	$('.box-image').hover(function(){
		$(".caption", this).stop().animate({top:'70px'},{queue:false,duration:160});
	}, function() {
		$(".caption", this).stop().animate({top:'110px'},{queue:false,duration:160});
	});
	
});
