$(function() {
	$("#form-valuation-submit").click(function() {
		$(".partex-valuation-row").fadeTo(0, 0.33);
		$.get("../../functions/form-valuation.php", { make: $("#make").val(), model: $("#model").val(), colour: $("#colour").val(), mileage: $("#mileage").val(), registration: $("#registration").val(), condition: $("#condition").val(), servicehistory: $("#servicehistory").val(), motexpiry: $("#motexpiry").val(), otherinfo: $("#otherinfo").val(), name: $("#name").val(), email: $("#email").val(), hometel: $("#hometel").val(), mobtel: $("#mobtel").val(), othertel: $("#othertel").val(), referenceno: $("#referenceno").val() },
		function(data){
			if (data=="formsubmitted") {
				$('.partex-valuation').before('<div class="partex-valuationsent"><img src="../styles/default/img/contact/thanks.png" width="151" height="21" /><br />One of our representatives will respond to your enquiry shortly.</div>').remove(); 
			} else {
				alert(data);
				$(".partex-valuation-row").fadeTo(0, 1);
			}
		});
		return false;
	});
});
