// form fields description structure
var a_fields = {
//	'title': {
//		'l': 'Title',  // label
//		'r': false,    // required
//		'f': 'alpha',  // format (see below)
//		't': 't_title',// id of the element to highlight if input not validated
		
//		'm': null,     // must match specified form field
//		'mn': 2,       // minimum length
//		'mx': 10       // maximum length
//	},
	'FirstName':{'l':'First Name','r':true,'f':'alpha','t':'t_first_name'},
	'LastName':{'l':'Last Name','r':true,'f':'alpha','t':'t_last_name'},
	'Address':{'l':'Street Address','r':true,'t':'t_address'},
	'City':{'l':'City','r':true,'t':'t_city'},
	'State':{'l':'State','r':true,'f':'alpha','t':'t_state'},
	'ZipCode':{'l':'Zip Code','r':true,'f':'unsigned','t':'t_zip_code'},
	'CellPhone':{'l':'Cell Phone','r':true,'f':'phone','t':'t_cellphone'},
	'Position':{'l':'Position Desired','r':true,'t':'t_position'},
	'Salary':{'l':'Salary Desired','r':true,'t':'t_salary'},
	'StartDate':{'l':'Start Date','r':true,'t':'t_startdate'},
	'Email':{'l':'E-mail','r':true,'f':'email','t':'t_email'},
	'Message':{'l':'Message','r':true,'t':'t_message'}
},

o_config = {
	'to_disable' : ['Submit', 'Reset'],
	'alert' : 1
}

// validator constructor call
var v = new validator('employment', a_fields, o_config);