$(document).ready(function(){
  // validate signup form on keyup and submit
	$("#cform").validate({
		rules: {
			email: "email"
		},
		messages: {
			name: "Please enter your name",
			email: "Please enter a valid email address",
			comments: "Please enter a comment or more information"
		}
	});
});
