(function($, window) {
    $(function() {
        var hereBanner = $("#carousel a[href^=/" + window.location.pathname.split("/")[1] + "/]");
        var banners = $("#carousel a");
        if (hereBanner.length == 1) {
            // We have a match, so display it.
            banners.not(hereBanner).hide();
        } else {
            // No match, no go with a slideshow.
            banners.slice(1).hide();
            var currentBanner = 0;
            function nextBanner() {
                banners.eq(currentBanner).fadeOut("slow");
                currentBanner += 1;
                if (currentBanner >= banners.length) {
                    currentBanner = 0;
                }
                banners.eq(currentBanner).fadeIn("slow");
            }
            setInterval(nextBanner, 6000);
        }
    });
}(jQuery, window));
