Event.observe(window, 'load', function() {
	if (!$('contact')) return false;
	NeoForm.create(
		'contact',
		{
			action: '/cgi-bin/submit_data.cgi',
			notes: {
				message: '(if making a reservation inquiry, please indicate your preferences for the date and time of your tour)'
			},
			after_submit: function (req, json) {
				var hide = $('tnx_hide');
				if (hide) Element.hide(hide);
				var show = $('tnx');
				if (show) {
					Element.show(show);
					new Effect.Pulsate(show, {duration: 1, from: 0.5});
				}
				return false;
			}
		}
	);
});
