﻿$(function () {
    $("#topnav_tour").addClass("selected");

    $('#anythingSlider').anythingSlider({
        width: 650,
        height: 300,
        autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
        delay: 5000,                    // How long between slide transitions in AutoPlay mode
        hashTags: true,                 // Should links change the hashtag in the URL?
        buildArrows: false,
        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: "",             // Start text
        stopText: ""               // Stop text
    });

    $('#ddlFeatureJump').change(function () {
        var featureId = $('#ddlFeatureJump').val();
        $('#anythingSlider').anythingSlider(parseInt(featureId));
    });
    $('.anythingSlider').addClass('adslider');
    $("img[rel].trigger").overlay({ effect: 'apple' });
});

function jumpToPledgeSlide() {
    $('#anythingSlider').anythingSlider(13);
};

function formatText(index, panel) {
    return index + "";
}

