jQuery(document).ready(function($) {
	$('#quickenq').submit(function() {		
		var qename = $('#qename').val();
		var qeregion = $('#qeregion').val();
		var qeskype = $('#qeskype').val();
		var qetime = $('#qetime').val();
		
		if (qename == 0 || qeskype == 0 || qetime == 0 || qeregion == 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, qeregion: qeregion, qeskype: qeskype, qetime: qetime }, function(data) {
				if (data == 2) {
					$('#fpad').html("<p id='qeresult'>Thank you for your request. One of our team will be in contact at the requested time.</p>").fadeIn('slow');
				} else {
					$('#qemsg').text('There was an error sending your message. Please try again.');
				}
			});
		}
		
		return false;
	});
});
