$(function() {
	$('h4.alert').hide().fadeIn(700);
	
	$('span.exit').click(function() {
		$(this).parent('h4.alert').fadeOut('slow');						   
	});
});
