function submitInquiry()
{
	var options = {
	 	success:processResponse,
	 	error:processResponse,
	 	dataType:"json"
	 }; 
	 
	 jQuery("#contactform").ajaxForm(options); 
	 
	 
	 jQuery("#contactform").submit();
}

function processResponse()
{
	alert("Your inquiry has been received.");
	
	document.location = "/home.htm";
}
