// JQuery Scripts
$(document).ready(function(){
	//$("#event-scroller").scrollable();
	$('#event-scroller').jcarousel({ scroll: 1, easing: 'swing'});

	/***********************************************************************
	 * Search Area
	 **********************************************************************/
	
	// Shows the search overlay
	$('.search-button').live('click',function() {
		$('.search-overlay').fadeIn();
		$(this).addClass('search-submit');
	});
	
	$('.service-times-items').cycle({ 
		fx:     'scrollHorz',
		easing: 'swing',
		prev:   '#prev', 
		next:   '#next', 
		timeout: 8000,
		rev: 1
	});
	
	$('#banner').cycle({ 
		timeout: 5000
	});

});

