$(function() {

	$('#name').validate({
		pattern    : /^[a-z'\-\ ]{4,50}$/i,
		length     : [4,50],
		transform  : 'capitalize'
	});

	$('#email').validateAs('email');

	$('#receipt').validate({
	  pattern    : /^WF(\d{9})/i,
		required   : false,
		transform  : 'uppercase',
		max_length : 11
	});

	$('#question').validate({ 'min_length' : 10 });

	//$('a.free-shipping').click(function(event) { return false; });

	$('#check-not-answered').change(function () {
		if ($(this).is(':checked'))
			$('#error-message').slideUp();
		else
			$('#error-message').slideDown();
	});

	$('#contact-form').ajaxForm({
		beforesubmit : function () {
			if (!$('#check-not-answered').is(':checked')) {
				$('#error-message').slideDown();
				return false;
			}
			return true;
		},
		response : '.notices',
		success  : function(data) {
			$('#contact-form').slideUp();
		},
		failure : function(data) {
		}
	});
});

