$(document).ready(function () {
	//$('.popUp').css('top', -400);
	$("#popUp").animate({top: "0px"});
	//alert("test");
	
	$(document).click(function(){
		if ($("#popUp").not(':hidden'))
			$("#popUp").animate({top: "-700px"});
		//return false;
	}) 
})
