$(document).ready(function()
{
	$("form#contact_form").validate({
										'fieldErrors' : {
															'first_name' : 'Please enter your ##field##.',
															'last_name' : 'Please enter your ##field##.',
															'phone_number' : 'Please enter a valid ##field##.',
															'email_address' : 'Please enter a valid ##field##.',
															'address' : 'Please enter your ##field##.',
															'post_code' : 'Please enter a valid ##field##.'
														},
										'ajax': true,
										'url' : 'contact_us_thankyou.php',
										'ajax_callback' : 'result',
										'fieldErrorsCap' : false
									});
});

function result(data)
{
	if(data == "success")
	{
		alert("Thank you for your enquiry, we will endeavour to get back to you as soon as we can.");
	}
	else
	{
		alert("Unfortunately there was an issue with the form and we did not receive your enquiry, please try again.");
	}
}
