		jQuery(function(){
			jQuery('#slider1')
			.anythingSlider({
				autoPlay		: true,
				//startStopped    : true, // If autoPlay is on, this can force it to start stopped
				width           : 960,   // Override the default CSS width
				theme           : 'minimalist-round',
				//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);
				},
				stopAtEnd : false,
				onShowStop : function(e, slider){
					setTimeout(function(){
						if (slider.currentPage === slider.pages) { slider.gotoPage(1); }
					}, 10000);
				}
			});
			jQuery('#slider1 img').css('display', 'block');
		});
