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

			$('#slider1').anythingSlider({
  				delay           : 12000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
				theme           : 'minimalist-square',
				autoPlayLocked  : false,  // If true, user changing slides will not stop the slideshow
				resumeDelay     : 5000,  // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
				buildArrows     : true,      // If true, builds the forwards and backwards buttons
				autoPlay        : true,
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				}
			});

			

		});
