$(function() {


	$('#logoslider').anythingSliderVertical({
		easing: "easeInOutExpo",
		autoPlay: true,
		delay: 1500,
		startStopped: false,
		animationTime: 500,
		hashTags: true,
		buildNavigation: false,
		pauseOnHover: false,
		startText: "Go",
		stopText: "Stop",
		navigationFormatter: formatText
	});

	$("#slide-jump").click(function() {
		$('.anythingSlider').anythingSlider(6);
	});

});

function formatText(index, panel) {
	return index + "";
};
