$(function(){
	var mTop = ($('.promo-image').outerHeight()-$('.promo-image').children('.promo-caption').outerHeight());
	$('.promo-caption').css('top', $('.promo-image').outerHeight()+'px');
	$('.jhover-caption').css('top', $('.jhover-parent').outerHeight()+'px');	
	$('.promo-image').hover(function(){
		$(this).children('.promo-caption').stop(true, false).animate({top:mTop+'px'}, 150);
	}, function(){
		$(this).children('.promo-caption').stop(true, false).animate({top:'100%'}, 150);
	});
});
