window.onload = initBannerLink;

var adImages = new
Array("http://www.alsa.org/images/cms/Aug10Bug.jpg","http://www.alsa-national.org/mailings/DM/CHC/Spotlight-CHC-Ad-National.jpg");
var adURL = new Array("s://secure2.convio.net/alsa/site/Donation2?18162.donation=form1&df_id=18162&JServSessionIdr004=lha2wpn732.app224b","://www.alsa.org/donate/workplace.cfm");
var thisAd = 0;

function rotate() {
       thisAd++;
       if (thisAd == adImages.length) {
               thisAd = 0;
       }
       document.getElementById("adBanner").src = adImages[thisAd];

       setTimeout("rotate()", 4 * 1000);
}

function newLocation() {
       document.location.href = "http" + adURL[thisAd];
       return false;
}

function initBannerLink() {
       if (document.getElementById("adBanner").parentNode.tagName == "A") {
               document.getElementById("adBanner").parentNode.onclick = newLocation;
       }

       rotate();
}
