jQuery(document).ready(function($) {
	$('#quickenq').submit(function() {		
		var qename = $('#qename').val();
		var qetel = $('#qetel').val();
		var qemail = $('#qemail').val();
		var qeenq = $('#qeenq').val();
		
		if (qename == 0 || qetel == 0 || qeenq == 0) {
			$('#qemsg').text('Please complete all fields first.');
		} else {
			$('#qemsg').html("<img src='/scripts/ajaxloader.gif' alt='Processing Form...' />");
			$.post("/scripts/quick-enquire.inc.php", { qename: qename, qetel: qetel, qemail: qemail, qeenq: qeenq }, function(data) {
				if (data == 2) {
					$('#qkenquiry_inner').html("<p id='qeresult'>Thank you for your enquiry. One of our team will be in contact shortly.</p>").fadeIn('slow');
				} else {
					$('#qemsg').text('There was an error sending your message. Please try again.');
				}
			});
		}
		
		return false;
	});
});
