/**
 * @author W951AGS
 */

$(function() {
	// validate the comment form when it is submitted
	$("#contact_form").validate();
	$("#contact_form").submit(function(){
		if ($("#contact_form").valid()) {
			ajaxSubmit();
			return false;
		}
	});
});

jQuery.validator.addMethod("phone", function(value, element) { 
  return this.optional(element) || /^\(\d{3}\) ?\d{3}( |-)?\d{4}|^\d{3}( |-)?\d{3}( |-)?\d{4}/.test(value); 
}, "Valid Formats: (555)333-6666, 555-333-6666, 5553336666");


function ajaxSubmit(){
	var formData = $("#contact_form").serialize();
	$.ajax({
		type: 'POST',
		url: '/contact_us.jsp',
		data: formData,
		success: function(){
			$("#contact_form").hide();
			result = '<p>Thank you, '+$('#first_name').val()+'. Your message has been sent.</p>';
			$('#confirm').html(result);
		}
	});
	return false;
};
