function formatText(index, panel) {
    return index + "";
};

 jQuery(function () {
     jQuery('.anythingSlider').anythingSlider({
          easing: "easeOutExpo",
          autoPlay: true,
          delay: 3000,
          StartStopped: true,
          animationTime: 600,
          hashTag: true,
          buildNavigation: true,
          pauseOnHover:true,
          startText: "Go",
          stopText: "Stop",
          navigationFomatter: formatText
 });
 jQuery("#slide-jump").click(function(){
          jQuery('.anythingSlider').anythingSlider();
   });
 });
