$(document).ready(function(){

$('.image').hover(function(){
	$(".caption", this).stop().animate({'margin-top' : -70}, {duration: 200, queue: false}, 'easeInOutQuad');
	$(".caption", this).animate({'opacity' : 0.75}, {duration: 200, queue: false}, 'easeInOutQuad');
	},
	function() {
	$(".caption", this).stop().animate({'margin-top' : 0}, {duration: 200, queue: false}, 'easeInOutQuad');
	$(".caption", this).animate({'opacity' : 0}, {duration: 200, queue: false}, 'easeInOutQuad');
});

})
