$(function(){
$("#popUp").animate({ "top": "+=200", "opacity": 1}, 3000);
$("#popUp .closePopUp").click(function(){
	$(this).parents("#popUp").animate({ opacity: 'hide' }, "slow");
});

});
