function loadPopupContact(){
		$(".overlayContact").fadeIn("slow");
		$(".popup-boxContact").fadeIn("slow");
	
}

function disablePopupContact(){
		$(".overlayContact").fadeOut("slow");
		$(".popup-boxContact").fadeOut("slow");
		}


$(document).ready(function(){
		$("div.contact").click(function(){
		loadPopupContact();
	});
				
	$("div.close").click(function(){
		disablePopupContact();
	});

});
