
document.observe('dom:loaded', function () {

	var tabsServices, show, toutshow;

	
	if ($('slideshow')) {
		show = new SlideShow(0, $('slideshow'), $$('#slideshow .slide'), 8);
	}


	if ($('getstarted_select_button')) {
		$('getstarted_select_button').observe('click', selectRedirect);
		function selectRedirect(event) {
			this.href = "";
			value = $('getstarted_business_types').value;
			if ( value == "" ) {
			}
			else {
				this.href = value;
			}
		}	
	}
	

});
