       
    $(function() {
        
			$('#slider1').anythingSlider({
				theme               : 'construction',
				themeDirectory      : 'http://www.allabouthawaii.com/slideshow/css/theme-{themeName}.css',
				startStopped    : false, // If autoPlay is on, this can force it to start stopped
				height		  : 345,
				width           : 600,   // Override the default CSS width
				theme           : 'metallic',
				autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
				delay           : 10000,
				resumeDelay     : 30000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				}
			});

    });
   
