jQuery(document).ready(function($) {
	$(document).ready(function(){
		$('.gallery-item.caption').hover(function(){
			$(".item-caption", this).stop().animate({bottom:'-90px'},{queue:false,duration:160});
		}, function() {
			$(".item-caption", this).stop().animate({bottom:'-160px'},{queue:false,duration:160});
		});
	});
});
