 function formatText(index, panel) {
		  return index + "";
	    }
    
        jQuery(function () {
        
            jQuery('.anythingSlider').anythingSlider({
                easing: "easeOutBack",        // 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: 500,                    // How long between slide transitions in AutoPlay mode
                startStopped: false,            // If autoPlay is on, this can force it to start stopped
                animationTime: 1000,             // How long the slide transition takes
                hashTags: true,                 // Should links change the hashtag in the URL?
                buildNavigation: false,          // 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: formatText       // Details at the top of the file on this use (advanced use)
            });
            
            
        });
        
// jquery.color Font Color Animations
        
        jQuery(document).ready(function(){
        
        // Basic Links
        
        jQuery("#column1 a, #home a").stop().hover(function() {
                jQuery(this).stop().animate({ color: "#e2d611" }, 400);
        },function() {
    jQuery(this).animate({ color: "#01a8e1" }, 500);
             });  
             
         // Navigation
           
                jQuery("#nav li a").stop().hover(function() {
                jQuery(this).stop().animate({ color: "#01a8e1" }, 400);
        },function() {
    jQuery(this).animate({ color: "#FFFFFF" }, 500);
        });
        
        // Sidebar Links
        
        jQuery("#sidebar ul li a").stop().hover(function() {
                jQuery(this).stop().animate({ color: "#01a8e1" }, 400);
        },function() {
    jQuery(this).animate({ color: "#FFFFFF" }, 500);
             });  
        
   });