$(function(){
	$("#send").bind("click", 
					function(e) {
						$.post(
						  '/backend.php',
						  {
							name: $("#name").attr("value"),
							phone: $("#phone").attr("value"),
							email: $("#email").attr("value"),
							type: $("#type").attr("value")
						  },
						  onAjaxSuccess
						);
					}
	);
});

function onAjaxSuccess(data) {
//	obj = eval("(" + data + ")");
	// No errors occured
	if (data) {
		$("#name").attr("value", "");
		$("#phone").attr("value", "");
		$("#email").attr("value", "");
		$("#type").attr("value", "");
		$("#inside p").html("Our representative will contact you.");
		$("#inside p").css("color", "#24a003");
		$("#inside p").css("font-weight", "bold");
	// An error occured
	} else {
		$("#inside p").html("All fields are required.<br />&nbsp;");
		$("#inside p").css("color", "#950808");
		$("#inside p").css("font-weight", "bold");
	}
	
	timer = setTimeout(function() {
					$("#inside p").html("Fill out the following form and a<br />representative will contact you.");
					$("#inside p").css("color", "#000");
					$("#inside p").css("font-weight", "normal");
					window.clearTimeout(timer);
			}, 
			delay);
}