$(function(){
	$('#popup').css({ bottom: '-150px' });
	setTimeout(function(){
		$('#popup').stop(true).animate({opacity: 1, bottom: '0'}, 550);
	}, 2000);

	$('a#close').click(function(){
		$(this).parent().fadeOut();
		setTimeout(function(){ $('#popup').remove(); }, 500);
		return false;
	});
});
