var slider2 = ['Home', 'Beratung', 'Prozesso', 'Profil', 'Infothek', 'Impressum'];
		function formatText(index, panel) {
			return slider2[index - 1];
		}

		$(function () {

			$('#slider1').anythingSlider({
				width : 800,          // Override the default CSS width
				easing: 'easeInOutExpo'
			});

			$('#slider2').anythingSlider({
				width               : 800,       // 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
				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-jump1").click(function(){
				$('#slider2').anythingSlider(1);
				return false;
			});
			
			$("#slide-jump2").click(function(){
				$('#slider2').anythingSlider(2);
				return false;
			});
			
			$("#slide-jump3").click(function(){
				$('#slider2').anythingSlider(3);
				return false;
			});
			
			$("#slide-jump4").click(function(){
				$('#slider2').anythingSlider(4);
				return false;
			});
			
			$("#slide-jump5").click(function(){
				$('#slider2').anythingSlider(5);
				return false;
			});
			
			$("#slide-jump6").click(function(){
				$('#slider2').anythingSlider(6);
				return false;
			});
			
			$("#slide-jump7").click(function(){
				$('#slider2').anythingSlider(1);
				return false;
			});

		});
