// JavaScript Document
$(document).ready(function()	{
	$("form").submit(submitForm);						   
});

function submitForm()	{
	formData = $("form").serialize();
	
	// Record visit with Google Analytics
	//pageTracker._trackPageview('/formsubmission');
	
	$.ajax({
		type : "POST",
		url : "procForm.php?action=send",
		data : formData,
		success : function(content, msg)	{		
			$("#results")
				.html(content)
				.show();
			
			if($("#results").html() == 'Thank you for your interest in Forty Two Eighty Nine. We will follow up as soon as possible.')	{							
				$("form input.txtInput").attr("value", "");
				$("form textarea").val("");
				setTimeout(function()	{
					$("#results").fadeOut();
					
					}, 5000);
				}
								
		}
	   });
	
	return false;
}