	$(document).ready(function() {
		$("#dtOverlayClose").click(function() {
			$("#dtOverlay").hide();
		});
		
		$(".dtShowForm").unbind("click").click(function() {
			var formType = $(this).attr("id").split("_")[1];
			
			$("#dtOverlayContent").load("/ajax/contact_ajax.php?type="+formType, function() {
				var cHeight = $("#dtOverlayInner").height();
				$("#dtOverlayInner").css("margin-top", "-"+ (cHeight/2) +"px");
			});
			
			$("#dtOverlay").show();
		});
		
		$("#dtOverlayInner").click(function(e) {
			e.stopPropagation();
		});
		
		$("#dtOverlayContent").click(function(e) {
			e.stopPropagation();
		});
		
		$(".JSHide").hide();
		
	});
