J(document).ready(function(){
	
	function disablePopup() {
		J("#backgroundPopup, #popupLanding").fadeOut(500);
	};
	
	J(document).keypress(function(e){
		if(e.keyCode==27){
			disablePopup();
		};
	});
	
	J("#popupContactClose, #backgroundPopup").click(function(){
		disablePopup();
	});
		
	J("#backgroundPopup").animate({
	    width: J(document).width() + 'px',
	    height: J(document).height() + 'px',
	    opacity: 0.7
	}).css("zIndex",4000).css("cursor","pointer");
	
	J("#popupLanding").animate({
		left: ((J(document).width()/2) - (J("#popupLanding").width()/2)) + 'px',
		top: '10px'
	}).css("zIndex",5001);
	
	J("#backgroundPopup, #popupLanding").fadeIn(500);
	
});
