<!--
$().ready(function() {
	// validate signup form on keyup and submit

	$("#comment-form").validate({
		rules: {
			fldName:   {
				required: true,
				minlength: 3
			},
			fldEmail:  {
				required: true,
				email: true
			},
			fldComment: {
				required: true,
				minlength: 4
			}
		},
		messages: {
			fldName: "Vul uw naam in",
			fldEmail: "Vul uw e-mail adres in",
			fldComment: {
				required: "Vul een reden in",
				minlength: "Uw reden moet uit minimaal 4 karakters bestaan"
			}
		}
	});

});
//-->
