
// original script by Tom Negrino and/or Dori Smith
// script modified by Forrest Thomas

window.onload = choosePic;

// *** Important Note:  images need to have an exact height of 203 and an exact width of 420
//var adImages = new Array("images/topPic2.jpg","images/takingCareofBusiness.jpg","images/ssbtx.jpg");
var adImages = new Array("images/ssbtx.jpg");
var adURL = new Array("pBanking.asp","lendingServices.asp");

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 15 * 1000);
}

function newLocation() {
	document.location.href = "" + adURL[thisAd];
	return false;
}

function choosePic() {
	if (document.getElementById("adBanner").parentNode.tagName == "A") {
		document.getElementById("adBanner").parentNode.onclick = newLocation;
		
		thisAd = Math.floor((Math.random() * adImages.length));
	    document.getElementById("adBanner").src = adImages[thisAd];
	}
		rotate();
}
