﻿function formatText(index, panel) {
    return index + "";
}

$(function () {

    $('.anythingFader').anythingFader({
        autoPlay: true,
        delay: 6000,
        startStopped: false,
        animationTime: 400,
        hashTags: false,
        buildNavigation: true,
        pauseOnHover: true,
        startText: "Go",
        stopText: "Stop",
        navigationFormatter: formatText
    });

    $("#slide-jump").click(function () {
        $('.anythingFader').anythingFader(6);
    });

});
