GF.node = 18326;
GF.struct =
[
	// 0 field id (str), 1 validation (rgx), 2 default (str), 3 valid (str), 4 invalid (str)
	['first-name', /^.+$/i, 'Your friends call you...', 'Hi %first-name%!', 'Invalid'],
	['last-name', /^.+$/i, 'Everybody else calls you Mr./Ms.', 'We mean %first-name% %last-name%', 'Invalid'],
	['address', /^.+$/i, 'Where do you hang your hat?', 'Thanks', 'Invalid'],
	['address-line-2', /^.*$/i, 'You can put your APT# here', 'Got it', 'Invalid'],
	['city', /^.+$/i, 'Where is that?', 'Sounds nice', 'Invalid'],
	['state', /^[a-z]{2}$/i, '2 letter state', 'Ok', 'Try this format: LA'],
	['zip', /^\d{5}$/i, '2 letter state & 5 digit zip', 'Great', 'Try this format: 12345'],
	['email', /^.+@.+\..{2,}$/i, 'Just so we can get a hold of you', 'No spam, we promise', 'Try this format: you@there.com']
];
