$('document').ready(function() {
	$('.ad-image').hover(function(){
		$(".caption", this).stop().animate({top:'40%'},{queue:false,duration:160});
	}, function() {
		$(".caption", this).stop().animate({top:'65%'},{queue:false,duration:160});
	});
});
