// JavaScript Document

$(document).ready(function(){
	var bodyHeight = $(window).height();
	var bodyWidth = $(window).width();
	var contactHeight = $("#pop-up").height();
	var contactWidth = $("#pop-up").width();
	
	$("#pop-up").css(
				{"top": bodyHeight / 2 - contactHeight / 2,
				"left": +bodyWidth / 2 - contactWidth / 2 + "px",
				"display": "block"}
	);
	
	$('a.close-pop').click(function(){
		$("#pop-up").hide();
		return false;
	});

});
