function pre(formdata) {
	$("#info").html("<p>Please Wait Sending...</p>")} //<img src='../images/gallery/loader.gif' /'>
function post(response) {
	if( response.indexOf('error') >= 0) {
		 //Output error message from response.
		 $("#info").html(response)
	} else {
		 $("#info").html("<p><strong>Thank you</strong>, your enquiry was successfully sent. We will be in contact shortly!</p>");
	}
}
var options = {
	beforeSubmit:  pre,
	success:       post,
	target: "#info",
	resetForm: false
};
$().ready(function() {
	$("#contact").validate({
				 submitHandler: function(form) {
					  $(form).ajaxSubmit(options)
				  }
			});
});

/*
function pre(formdata) {
	$("#info").html("<p><img src='../images/loading.gif' /'> Please Wait Sending...</p>")}
function post(response) {
	if( response.indexOf('error') >= 0 || response.indexOf('Error') >= 0)
	{
		 //Output error message from response.
		 $("#info").html(response)
		 alert(response);
	}
	else
	{
		 $("#info").html("<p><strong>Thank you</strong>, your enquiry was successfully sent. We will be in contact shortly!</p>");
		// alert("Thank you - your enquiry was successfully sent. We will be in contact shortly!");
		 //location.href="http://www.google.com";
	}
}
var options = {
	beforeSubmit:  pre,
	success:       post,
	target: "#info",
	resetForm: false
};
$().ready(function() {
	$("#contact").validate({
				 submitHandler: function(form) {
					  $(form).ajaxSubmit(options)
				  }
			});
});
*/
