/**
 * Set up some variables that will be used by JS validation 
 */
var validationContext = {
	messages : {
		'emailAddress': {
			'remote':'Email address is already in use.',
			'required':'Please enter a valid email address',
			'email':'Please enter a valid email address'
		},
		'emailAddressVerify':'Please confirm your email address',
		'email': {
			'remote':'Email address is already in use.',
			'required':'Please enter a valid email address',
			'email':'Please enter a valid email address'
		},
		
		"firstName": 'Please enter your first name',
		"lastName":'Please enter your last name',
		
		// have to specify for each field, and then use "group" option when configuring validation for a form to only the message once for the group
		"birthDay":'Sorry! You must be 18 years of age or older to create an account.',
		"birthMonth":'Sorry! You must be 18 years of age or older to create an account.',
		"birthYear":'Sorry! You must be 18 years of age or older to create an account.',
		
		"username":'Please enter your email',
		"loginPassword":'Please enter a password',
		
		"password":'Please enter a password (between 3 and 20 characters)',
		"regPassword":'Please enter a password (between 3 and 20 characters)',
		"regPasswordVerify":'Please confirm your password',
		
		"termsOfUse":'Please agree to the terms of use',
		
		"addressLine1":'Please enter an address',
		"addressLine2":'Please enter an address',
		"city":'Please enter a city',
		"state":'Please enter a state',
		"postalCode":'Please enter a zip or postal code',
		
		"phoneMain1":'Please enter a valid US phone number',
		"phoneMain2":'Please enter a valid US phone number',
		"phoneMain3":'Please enter a valid US phone number',
		
		"phoneMobile1":'Please enter a valid US mobile phone number',
		"phoneMobile2":'Please enter a valid US mobile phone number',
		"phoneMobile3":'Please enter a valid US mobile phone number',
		
		"brandOptOut":'Please check the subscriptions you would no longer like to receive',
		'reminderOptOut':'Please check the subscriptions you would no longer like to receive',
		
	    // survey fields
		'q5000':'Please answer all questions',
		'q5100[]':'Please answer all questions',
		'q5200':'Please answer all questions',
		'q5300[]':'Please answer all questions',
		'q5400[]':'Please answer all questions',
		'q5500':'Please answer all questions'	
	}		
};

