jQuery(document).ready(function($) {

	$.fn.formHooks = function() {
		if (!(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/iPad/i))) {
			$('#Form_RegisterForm select').chosen();
		}
		$('#Form_RegisterForm').validate( {
			errorClass: 'validation-failed'
			, rules: {
					FirstName: 'required',
					Surname: 'required',
					Telephone: 'required',
					Email: {
						required: true,
						email: true
					},
					ConfirmEmail: {
						required: true,
						email: true,
						equalTo: '#Form_RegisterForm_ConfirmEmail'
					}
			}
			, submitHandler: function(form) {
				$('.content').load('/microsite/register-your-interest/submit'
					, {data: $(form).serialize()}
					, function() {
						$.fn.formHooks();
					}
				);
				return false;
			}
		});
	};
	// give it a go, may be registration page
	$.fn.formHooks();
});


