$(function() {

$('#super2 h4.alert').hide().fadeIn(700);
$('<span class="exit">X</span>').appendTo('#super2 h4.alert');

$('#super2 span.exit').click(function()	{
		$(this).parent('#super2 h4.alert').fadeOut('slow');
	});
  
});