var __submitted__ = 0;
$(document).ready(function() {
		$("#id_contact-submit").click(function () {
			if (__submitted__ > 0)
				return false;
			__submitted__ += 1;
			$('#id_contact-submit').html('sending');
			$('.error').hide();
			$('.error').html();
			jQuery.post(
				'/contact',
				{
					name: 		$('#id_name').val(),
					email: 		$('#id_email').val(),
					phone: 		$('#id_phone').val(),
					pstart: 	$('#id_pstart').val(),
					pbudget: 	$('#id_pbudget').val(),
					pdesc: 		$('#id_pdesc').val(),
					heard: 		$('#id_heard').val()
				},
				function (data) {
					__submitted__ = 0;
					if (data.success) {
						$('#id_results').html(data.results);
						$('#id_contact').hide();	
						$('#interested2').hide();	
						$('#interested').html('<strong>Success!</success>');	
						$('#interested').addClass('big');
						$('#id_results').fadeIn('slow');
					} else {
						$('#id_contact-submit').html('Submit');
						var err;
						for (err in data.errors) {
							$('#'+err+"_err").html(data.errors[err]);
							$('#'+err+"_err").show();
						}
					}
				},
				"json"
			);
			return false;
		});
});
