$(function() {
	$('.message p')
	.animate({opacity: 1.0}, 9000)
	.fadeOut('slow');
	$('.message')
	.animate({opacity: 1.0}, 10000)
	.slideUp('slow');
});

