$(document).ready(function() {
  $("form#testimonial_submit").submit(function(){
	var hasError = false;
	var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
	var first_name = $("input#testimonial_name").val();
	if(first_name == '') {
		$("#testimonial_name_error").html('Please enter your name.');
		hasError = true;
	} else {
		$("#testimonial_name_error").html('');
	}
	var email_address = $("input#testimonial_email").val();
	if(email_address == '') {
		$("#testimonial_email_error").html('Please enter a valid e-mail address.');
		hasError = true;
	} else if(!emailReg.test(email_address)) {	
		$("#testimonial_email_error").html('Please enter a valid e-mail address.');
		hasError = true;
	} else {
		$("#testimonial_email_error").html('');
	}
	var city_from = $("input#testimonial_from").val();
	if(city_from == '') {
		$("#testimonial_from_error").html('Please enter your city of residence.');
		hasError = true;
	} else {
		$("#testimonial_from_error").html('');
	}
	var testimonial = $("textarea#testimonial_text").val();
	if(testimonial == '') {
		$("#testimonial_text_error").html('Please enter your testimonial.');
		hasError = true;
	} else {
		$("#testimonial_text_error").html('');
	}
	if(hasError == false) {
		$.post("includes/process.php",{ first_name: first_name, email_address: email_address, city_from: city_from, testimonial: testimonial }, function() { $("#testimonial_submit").slideUp("normal", function() { $("#testimonial_submit").before('<div style="margin: 15px;"><h3 class="red">Thank You!</h3><p style="font-style: italic; margin: 10px 0px; font-size: 12px;">We have received your testimonial, and we greatly appreciate you taking the time to tell people what you think about Steam Masters.</p></div>' )} )} );
	}
    return false;
  });
});
