// JavaScript Document
$(document).ready(function() {
	$("#sending_information").hide();
	$('#phone').numeric();
	$('#fax').numeric();
	$('#numDays').numeric();
	$('#numGuests').numeric();

	$("#submit_enquiry").click(function() {
		var dataString = $("#function_enquiry").serialize();
			$.ajax({
				type: "POST",
				url: "hire.php",
				cache: false,
				async: false,
				data: dataString,
				beforeSend: function() {
					$("#sending_information").show();
				},
				error: function() {
					$("#sending_information").html("<p>This form was unable to be submitted. Please try again later.</p>");
				},
				success: function(msg) {
					$("#sending_information").html("<p>"+msg+"</p>");
					// Reset Form
					$("form")[0].reset();
					$(".trigger").hide();
					$(".toggle_container").hide();
				}
			});
			alert(dataString);
			return false;
													
	});
});