window.onload = initBannerLink;

var adImages = new
Array("http://www.alsa-national.org/mailings/dm/plannedgiving/Year_End_Gift_widget.jpg","http://www.alsa-national.org/mailings/dm/plannedgiving/IRA_rollover_widget.jpg","http://www.alsa-national.org/mailings/dm/plannedgiving/Stocks_widget.jpg");
var adURL = new Array("alsa.org/donate/secure/default.cfm","alsa.planyourlegacy.org/GIFTlifetimeretireIRA.php","alsa.planyourlegacy.org/GIFTappsec.php");
var thisAd = 0;

function rotate() {
       thisAd++;
       if (thisAd == adImages.length) {
               thisAd = 0;
       }
       document.getElementById("adBanner").src = adImages[thisAd];

       setTimeout("rotate()", 3 * 1000);
}

function newLocation() {
       document.location.href = "http://www." + adURL[thisAd];
       return false;
}

function initBannerLink() {
       if (document.getElementById("adBanner").parentNode.tagName == "A") {
               document.getElementById("adBanner").parentNode.onclick = newLocation;
       }

       rotate();
}