function formatText(index, panel) {
  return index + "";
}
$(function () {
	$('.anythingSlider').anythingSlider({
		easing: "linear",        		
		autoPlay: true,                 
		delay: 5000,
		animationTime: 300,             
		hashTags: false,                 
		buildNavigation: true,          
		pauseOnHover: true,             
		startText: "",             		
		stopText: "",              		
		navigationFormatter: formatText 
	});
});
