$("document").ready(function() {
	$("#whitepaperform").submit(function() {
		processDetails();
		return false;
	});
});

function processDetails() {
	var errors = '';
	
	// Validate name
	var email = $("#whitepaperform [name='email']").val();
	if (!email) {
		errors += ' - Please enter a valid email address.\n';
	}
	// Validate age range
	var state = $("#whitepaperform [name='state']").val();
	if (!state) {
		errors += ' - Please select a state.\n';
	}
	
	if (errors) {
		errors = 'The following errors occurred:\n' + errors;
		alert(errors);
		return false;
	} else {
		// Submit our form via Ajax and then reset the form
		$("#whitepaperform").ajaxSubmit({success:showResult});
		return false;
	}
	
}

function showResult(data) {
	if (data == 'save_failed') {
		return false;
	} else {
		$("#whitepapermain").html('<h4>Thank you for requesting your free copy of <span class="orange">Secrets of Middle School Success</span>. We will send you an email with your article shortly.</h4>');
		return false;
	}
}
