		SubmittingForm=function() {
//			alert("The form has been validated.");

		}

		$(document).ready(function() {
			$("#contactform").validate({
				submitHandler:function(form) {
					$(form).submit();
				},
				rules: {
					contactname: "required",		// simple rule, converted to {required:true}
					email: {				// compound rule
						required: true,
						email: true
					},
				}
			});
		});

