window.onload = ChooseAd;

var AdImages= new Array ("ads/inspirationalreading-totid-darlingstongjohnson-01-14-07.gif"

);

function rotate(){

ThisAd++;

if (ThisAd == AdImages.length){

ThisAd=0;

}

document.getElementById("AdBox").src = AdImages[ThisAd];

setTimeout("rotate()", 10*1000);

}

function ChooseAd(){

ThisAd=AdImages.length - 1;

document.getElementById("AdBox").src=AdImages[ThisAd];

rotate();

}



