$(function(){

     $('#slider1').anythingSlider({
	       startStopped    : false, // If autoPlay is on, this can force it to start stopped
	       theme           : 'metallic',
	       delay           : 6000,
	       autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
	       resumeDelay     : 6000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
	       onSlideComplete : function(slider){
		    // alert('Welcome to Slide #' + slider.currentPage);
	       }
     });

});
$(function(){

     $('.the-mini-gallery').anythingSlider({
	       startStopped    : true, // If autoPlay is on, this can force it to start stopped
	       theme           : 'metallic',
	       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).
	       onSlideComplete : function(slider){
		    // alert('Welcome to Slide #' + slider.currentPage);
	       }
     });

});

