$().ready(function() {
	$('#warnings').html( '<h3>Please verify your answers:</h3>' );
//	$("#dtArrival").mask("99/99/9999", placeholder=" ");
//	$("#dtDeparture").mask("99/99/9999", placeholder=" ");

	var options = {
        target: '#form-response', 
		beforeSubmit: function(){
			$('#form-response').html('<img src="images/loadingAnimation.gif" alt="Loading..." />').height('100%').fadeIn('slow'); 
			$('#formcontainer').fadeOut('fast');
		},
		success: function() { 
			$('a.back').bind('click', function() {
				$('#form-response').fadeOut('fast'); 
				$('#formcontainer').fadeIn('fast');
				return false;
			});
		}
	};


// validate signup form on keyup and submit
	$("#site-contact").validate({
		errorElement: "em",
		errorContainer: $("#warning"),
		rules: {
			txtName: "required",
			txtEmail: {
				required: true,
				email: true
			},
			txtPhone: {
				required: true,
				phone: true
			},
			txtAnswer: "required"
		},
		messages: {
			txtName: 		"Please enter your Full Name",
			txtEmail: 		"Please enter a valid Email Address",
			txtPhone:		"Please enter a valid Phone Number",
			txtAnswer:		"Please answer the Verification Question"
		},
		submitHandler: function(form) {
			$(form).ajaxSubmit(options);
		}
	});
	return false;
});
///jValidation
