function formatText(index, panel) {
    		  return index + "";
    	  };

        $(function () {
				var tab=new Array();
				tab[1] = '<span id="tab_smart"> </span>';
				tab[2] = "<span id=\"tab_personal\"> </span>";
				tab[3] = "<span id=\"tab_calendar\"> </span>";
				tab[4] = "<span id=\"tab_promotions\"> </span>";
            $('.anythingSlider').anythingSlider({
                easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
                autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
                delay: 4000,                    // How long between slide transitions in AutoPlay mode
                startStopped: false,            // If autoPlay is on, this can force it to start stopped
                animationTime: 600,             // How long the slide transition takes
                hashTags: true,                 // Should links change the hashtag in the URL?
                buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
            		pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
            		startText: "Go",                // Start text
    		        stopText: "Stop",               // Stop text
    		        navigationFormatter: function(index, panel){
				return  tab[index] + " "; 		// This would have each tab with the text 'X Panel' where X = index
}
            });

            $("#slide-jump").click(function(){
                $('.anythingSlider').anythingSlider(4);
            });

        });
