// JavaScript Document

$(document).ready( function () {

$('.enqForm').validate({
	
   submitHandler: function(form) {

		var data = $(".enqForm").serialize();

		$.ajax( {
			url: "content/enquiryprocess0924.php",
			data: data,
			type: "POST",
			success: function (response) {
				$(".enqResponse").html(response);
				$(".enqResponse").css("display", "block");
				$(".enqForm").css("display", "none");
				
				
			},
			error: function (ee) {
				alert("Technical Error: " + ee.status);
				
			}
			
		});
		
		return false;
   }
		
    });

	
});


