// Set up Sliders
		// **************
		$(function(){
 
			$('#slider1').anythingSlider({
				startStopped    : true, // If autoPlay is on, this can force it to start stopped
				width           : 1024,   // Override the default CSS width
				buildNavigation : true,      // If true, buildsa list of anchor links to link to each panel
				theme           : 'metallic',
				easing: 'easeInOutBack',
//				autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
//				resumeDelay     : 10000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				}
			});
 
 
		});
