function formatText(index, panel) {
  return '<span class="slider_nav">' + index + '</span>';
}


$(function () {

	$('.anythingSlider').anythingSlider({
	    easing: "easeOutCubic",
	    autoPlay: true,
	    delay: 4000,
	    startStopped: false,
	    animationTime: 823,
	    hashTags: true,
	    buildNavigation: false,
		pauseOnHover: true,
		startText: "Go",
	    stopText: "Stop",
	    navigationFormatter: formatText
	});

});


