jQuery(function() {
		
	var v = jQuery("#contactMeForm").validate({

		rules: {
			email: {
				email: true
			},
			website: {
				url: true
			}
		},
		submitHandler: function(form) {
			jQuery(form).ajaxSubmit({
				target: ".theForm"
			});
		}
	});
	
});