$().ready(function() {
	// validate the comment form when it is submitted
	$("#commentForm").validate({
			submitHandler: function(form) {
			$("#contresult").show();
				$(form).ajaxSubmit({
					target: "#result"
				});
				
			}
	});		
});

