function popupFadeIn() {
	$("#popup").css("display", "block");
	$("#popup").animate({
		marginTop: 60
	},1500);
}

function popupFadeOut() {
	$("#popup").animate({
		marginTop: (popupHeight * -1)-30
	},1500);
}

$("#close").click(function(){
	popupFadeOut();
});

$(document).ready(function(){

	popupHeight = $("#popup").outerHeight();
	$("#popup").css("margin-top", (popupHeight * -1)-30 );
	setTimeout('popupFadeIn()', 1500);

});

