captionUp = function(){
	$(this).children().animate({bottom: '+=83px'}, 1000);
}

captionDown = function(){
	$(this).children().css('bottom', '-83px');
}

		
$(function(){
	$('.banner-image.active').children().animate({bottom: '+=83px'}, 1000);
	$('#banner').cycle({timeout: 8000, before: captionDown, after: captionUp});
	});
