var slider1 = ['Office', 'Retail', 'Hotels and Leisure', 'Science and Healthcare', 'Education'];
    function formatText(index, panel){
      return slider1[index - 1];
    }

  $(function () {

    $('.anythingFader').anythingFader({
      delay: 5000,                    // How long between slide transitions in AutoPlay mode
      startStopped: false,            // If autoPlay is on, this can force it to start stopped
      animationTime: 200,             // How long the slide transition takes
      hashTags: false,                 // Should links change the hashtag in the URL?
      buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
      startText: "Play",                // Start text
      stopText: "Pause",               // Stop text
      navigationFormatter: formatText   // Details at the top of the file on this use (advanced use)
    });
    
    $("li").each(function(index) {
      //  alert(index + ': ' + $(this).attr("class"));
     });    


$("div.wrapper ul li").each(function(index) {

  });

  });
