// Delay Plugin for jQuery
// - http://www.evanbot.com
// - © 2008 Evan Byrne

// jQuery.fn.delay = function(time,func){
//	this.each(function(){
// 		setTimeout(func,time);
//	});
	
//	return this;
// };	

$(document).ready(function(){

	$('#signUp').validate({
	  rules: {
		email: {
		  required: true,
		  email: true
		},
		"cm-hhouy-hhouy": {
		  required: true,
		  email: true
		}
	  },
		messages: {
            First_Name: "First name is a required field",
            Last_Name: "Last name is a required field",
            "cm-name": "Your name is a required field",
            Email: "Please enter a valid email address",
            "cm-hhouy-hhouy": "Please enter a valid email address",
            Zipcode: "Zip code is a required field",
           	"cm-f-thuhly": "Zip code is a required field",
            Attending: "How many will be attending?"
        }
	});
	
});

