window.onload = initBannerLink;

var adImages = new Array("k9TacOps_ad.gif","raleys_ad.gif","iams_ad.gif","gmp_ad.gif");
var adURL = new Array("www.k9tacops.com","www.raleys.com","www.iams.com","www.gracemediaproductions.com");
var thisAd = 0;

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 10 * 1000);
}

function newLocation() {
    window.open("http://" + adURL[thisAd], "MyWindow", "");
    return false;
}

function initBannerLink() {
	if (document.getElementById("adBanner").parentNode.tagName == "A") {
		document.getElementById("adBanner").parentNode.onclick = newLocation;
	}
	
	rotate();
}
