$(document).ready(function() {
$(".close").click(function() {
$.modal.close();
});

$(".send").click(function() {
$.modal.close();
$(".sending").show();
$(".submit").click();				  
});


$(".preview").click(function() {

var val = $("#f").validate().form();
if(val != false)
{

$(".result_title").html($("#title").val());
$(".result_firstname").html($("#firstname").val());
$(".result_lastname").html($("#lastname").val());
$(".result_address").html($("#address1").val());
$(".result_city").html($("#city").val());
$(".result_province").html($("#province").val());
$(".result_postalcode").html($("#postalcode").val());
$(".result_country").html($("#country").val());
$(".result_hphone").html($("#hphone").val());
$(".result_wphone").html($("#wphone").val());
$(".result_cphone").html($("#cphone").val());
$(".result_email").html($("#email").val());
$(".result_profession").html($("#profession").val());

	$('#previewcontent').modal({ onOpen: function (dialog) { 
			dialog.overlay.fadeIn('slow', function () { 
				dialog.container.fadeIn('slow', function () {
					dialog.data.fadeIn('slow');
				});
			});
		}});
}

});

	$("#f input:first").focus();
	 $("#f").validate();

});
