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

			$('#slider').anythingSlider({
				width               : 620,   // if resizeContent is false, this is the default width if panel size is not defined
				height              : 317,   // if resizeContent is false, this is the default height if panel size is not defined
				resizeContents      : true,  // If true, solitary images/objects in the panel will expand to fit the viewport
				startStopped        : false, // If autoPlay is on, this can force it to start stopped
				buildArrows         : false, // If true, builds the forwards and backwards buttons
				navigationFormatter : function(index, panel){ // Format navigation labels with text
					return ['1', '2', '3'][index - 1];
				}
			});

		});
