$(function(){

	$('#slider2').anythingSlider({
		
		// NAVIGATION SETTINGS
		buildArrows         : false, // If true, builds the forwards and backwards buttons
		buildNavigation     : false, // If true, builds a list of anchor links to link to each panel
		
		// VIEWPORT SETTINGS
		width               : 565,   // if resizeContent is false, this is the default width if panel size is not defined
		height              : 400,   // if resizeContent is false, this is the default height if panel size is not defined
		resizeContents      : false, // If true, solitary images/objects in the panel will expand to fit the viewport
		
		// ANIMATION SETTINGS
		delay               : 9000,   // How long between slideshow transitions in AutoPlay mode (in milliseconds)
		animationTime       : 1000,   // How long the slideshow transition takes (in milliseconds)
		startStopped        : false,  // If autoPlay is on, this can force it to start stopped
		navigationFormatter : function(index, panel){ // Format navigation labels with text
			return ['1', '2', '3'][index - 1];
		}
	});
	
	$('#slider3').anythingSlider({
				
		// NAVIGATION SETTINGS
		buildArrows         : true,      // If true, builds the forwards and backwards buttons
		buildNavigation     : false,      // If true, builds a list of anchor links to link to each panel
		
		// VIEWPORT SETTINGS
		width               : 960,   // if resizeContent is false, this is the default width if panel size is not defined
		height              : 300,   // if resizeContent is false, this is the default height if panel size is not defined
		resizeContents      : false, // If true, solitary images/objects in the panel will expand to fit the viewport
		showMultiple        : 3,     // Set this value to a number and it will show that many slides at once
		
		// ANIMATION SETTINGS 
		delay               : 9000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
		animationTime       : 500,       // How long the slideshow transition takes (in milliseconds)
		startStopped        : true,  // If autoPlay is on, this can force it to start stopped
		navigationFormatter : function(index, panel){ // Format navigation labels with text
			return ['1', '2', '3'][index - 1];
		}
	});
	
	$('#slider4').anythingSlider({
				
		// NAVIGATION SETTINGS 
		buildArrows         : true,      // If true, builds the forwards and backwards buttons
		buildNavigation     : false,      // If true, builds a list of anchor links to link to each panel
		
		// VIEWPORT SETTINGS 
		width               : 960,   // if resizeContent is false, this is the default width if panel size is not defined
		height              : 300,   // if resizeContent is false, this is the default height if panel size is not defined
		resizeContents      : false, // If true, solitary images/objects in the panel will expand to fit the viewport
		showMultiple        : false,     // Set this value to a number and it will show that many slides at once
		
		// ANIMATION SETTINGS 
		delay               : 9000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
		animationTime       : 700,       // How long the slideshow transition takes (in milliseconds)
		startStopped        : true,  // If autoPlay is on, this can force it to start stopped
		stopAtEnd           : true,     // If true & the slideshow is active, the slideshow will stop on the last page
		navigationFormatter : function(index, panel){ // Format navigation labels with text
			return ['1', '2', '3'][index - 1];
		}
	});

});
