$(function() {
	$('h4.alert').hide().fadeIn(700);
	
	$('span.exit').click(function() {
		$(this).parent('h4.alert').fadeOut('slow');						   
	});
	
	$("div.pop a").click(function (){
		$("div.pop").animate({top: '-800px' }, 500);			
	});

});

function pop(){ $("div.pop").animate({top: '-800px' }, 500);}
$(document).ready(function() {
	setTimeout("pop()",10000);
});
