window.addEvent('domready', function() {	
	if ($('more_info_form')) {
		var myCheck = new FormCheck('more_info_form', {
			display: {
				indicateErrors: 1,
				scrollToFirst: 1
			}
		});
	}
	
	$$('td:contains([required])').each(function(o, i) {
		o.set('html', o.get('html').replace('[required]', '<span class="required">[required]</span>'));
	});
	
	if ($('banner')) {
		var mySwiff = new Swiff('flash/thorp_950x926.swf', {
			'width': 950,
			'height': 296,
			'container': 'banner',
			'params': {
				'wmode': 'opaque',
				'bgcolor': '#ffffff'
			}
		});
	}
	
	if ($('featured-refresher')) {
		(function() {
			new Request.HTML({
				'url': 'remote.featured.php',
				'update': 'featured-refresher'
			}).send()
		}).periodical(10000);
	}
    //new autoSuggest('includes/make_suggestion.php', 'make_suggest', 'hiddenOutcome', { 'minLength':1 });
    //new autoSuggest('includes/model_suggestion.php', 'model_suggest', 'hiddenOutcome', { 'minLength':1 });
});