$(document).ready(function(){
	
	$('#formContent').submit(function() {
	  missingFields = 0
	  $(".required").each(function() {
			if ($(this).val() == "") {
				missingFields = 1;
			}
	   });

	   if (missingFields) {
	  	 alert("Sorry you are missing some of the required fields.\nPlease try again.");
		 return false; // <-- important!
	   } else {
			$(this).ajaxSubmit({
		      success: function(i) {
				$("#formResponsetxt").html(i);
				$("#formContent").hide();
				$("#formResponse").show();
			 }
			});
			return false; // <-- important!
	   }
	});
	
	$('#try-form-again').livequery('click', function() {
		$("#formResponse").hide();
		$("#formContent").show();
	})
	
	/*** NEWS LETTER SIGNUP TO PREVENT CLASHES ****/
	
	$('#newsFormContent').submit(function() {
		$(this).ajaxSubmit({
	      success: function(i) {
			$("#newsFormResponsetxt").html(i);
			$("#newsFormContent").hide();
			$("#newsFormResponse").show();
		 }
		});
		return false; // <-- important!
	});
	
	$('#news-try-form-again').livequery('click', function() {
		$("#newsFormResponse").hide();
		$("#newsFormContent").show();
	})
});
