jQuery(document).ready(function($) {	
	$(document).ready(function(){
		$('.gallery-item.caption').hover(function(){
			$(".item-caption", this).stop().animate({top:'80px'},{queue:false,duration:400});
		}, function() {
			$(".item-caption", this).stop().animate({top:'300px'},{queue:false,duration:400});
		});
	});
});
