var img = new Array();
var url = new Array();
var ad = 0;

img[0] = new Image(400, 224);
img[0].src = "/bknights.org/gfx/adBox/datr.png";
url[0] = "http://www.drumsalongtherockies.com";

img[1] = new Image(400, 224);
img[1].src = "/bknights.org/gfx/adBox/ce.png";
url[1] = "http://www.corpsencore.com";

img[2] = new Image(400, 224);
img[2].src = "/bknights.org/gfx/adBox/datr_l.png";
url[2] = "http://www.drumsalongtherockies.com";

img[3] = new Image(300, 250);
img[3].src = "/bknights.org/gfx/adBox/BLL7_G_300x250.jpg";
url[3] = "http://www.fathomevents.com/concertsandmusic/event/dci2010_live.aspx";

document.getElementById("adBox2Img").src = img[3].src;
document.getElementById("adBox2Lnk").href = url[3];

// Removing rotation, because we only have one banner at the moment
// setTimeout("adRotate()", 5000);

function adRotate() {
	ad ++;
	if (ad == img.length) {
		ad = 0;
	}
	document.getElementById("adBox2Img").src = img[ad].src;
	document.getElementById("adBox2Lnk").href = url[ad];
	setTimeout("adRotate()", 5000)
}

