$(document).ready(function () {

		var slider2 = ['Recipe', 'Quote', 'Image', 'Quote #2', 'Image #2'];
		function formatText(index, panel) {
			return slider2[index - 1];
		}

		$(function () {

			$('#slider1').anythingSlider({
				width : 623,          // Override the default CSS width
				height: 214,
				easing: 'easeInOutExpo',
				delay: 9000,
				buildArrows         : false,
				buildNavigation     : false
			});

			
			$("#slide-jump").click(function(){
				$('#slider2').anythingSlider(4);
				return false;
			});

		});
	});
