// JavaScript Document

$(function(){

			$('#slider1').anythingSlider({
				autoPlay        : true,
				delay           : 6000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
 				animationTime   : 600,       // How long the slideshow transition takes (in milliseconds)
				startStopped    : false, // If autoPlay is on, this can force it to start stopped
				width           : 890,   // Override the default CSS width
				height          : 452,   // Override the default CSS width
				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);
				}
			});
			
			$('#slider2').anythingSlider({
				startStopped    : true, // If autoPlay is on, this can force it to start stopped
				width           : 890,   // Override the default CSS width
				height          : 300,   // Override the default CSS width
				theme			: 'minimalist-round',
				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);
				}
			});
		});
