
		$(function(){
			$('#slider1').anythingSlider({
				startStopped    : false, // If autoPlay is on, this can force it to start stopped
				hashTags        : false,
				toggleArrows    : false,
				buildArrows     : false,
				enablePlay      : true,      // if false, the play/stop button will still be visible, but not clickable.
				autoPlayLocked  : false,  // If true, user changing slides will not stop the slideshow
				resumeDelay     : 10000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
				easing          : "swing",   // Anything other than "linear" or "swing" requires the easing plugin
				delay           : 4500,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
				animationTime   : 600,       // How long the slideshow transition takes (in milliseconds)
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				}
			});
		});

