﻿$(document).ready(function() {

    hideSpotlights();

});

function showSpotlight(nodeName) {

    if ($("#" + nodeName).attr("style").indexOf("none") != -1)
    {
        hideSpotlights();
        $(".homeImage").hide();
        $("#" + nodeName).show();
        $("." + nodeName + ":a").addClass("arrowActive");
   }


return true;

}

function hideSpotlights() {


    $(".spotlightBanner").hide();
    $(".homeImage").show();
    
    $(".arrowActive:a").removeClass("arrowActive");
}