	<script type="text/javascript">

		var slider2 = ['Recipe', 'Quote', 'Image', 'Quote #2', 'Image #2'];
		function formatText(index, panel) {
			return slider2[index - 1];
		}

		$(function () {

			$('#slider1').anythingSlider({
				width : 480 // Override the default CSS width
			});

			$('#slider2').anythingSlider({
				width               : 480,       // if resizeContent is false, this is the default width if panel size is not defined
				height              : 250,       // 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
				autoPlay            : false,     // This turns off the entire slideshow FUNCTIONALY, not just if it starts running or not
				navigationFormatter : formatText // Format navigation labels with text
			})

			$("#slide-jump").click(function(){
				$('#slider2').anythingSlider(4);
				return false;
			});

		});
	</script>
