		// DOM Ready
			// Set up Sliders
		// **************
		$(function(){

			$('#slider').anythingSlider({
				startStopped    : false,  // If autoPlay is on, this can force it to start stopped
				width           : 1000,   // Override the default CSS width
				height          : 316,   // Override the default CSS width
				theme           : 'metallic',
				buildArrows     : true,
				autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
				delay           : 10000, // Delay between 2 slides in micro seconds
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				}
			});

		

		});
