		// Set up Sliders
		// **************
		$(function() {
		
			$('#slider').anythingSlider({
				theme               : 'default',
				easing              : 'swing',
				buildArrows         : false,
				buildNavigation     : false,
				buildStartStop      : false,
				autoPlay            : true,
				autoPlayDelayed     : true,
				pauseOnHover        : false,
				delay               : 10000,
				animationTime       : 4000
			});
			
			$('#fwd, #bck').click(function(){
				var direction = (this.id === 'fwd') ? 'goForward' : 'goBack';
				$('ul[id^=slider]').each(function(){
				$(this).data('AnythingSlider')[direction]();
				});
			});
			
		});
