defaultDelay = 4;

ads = new Array()
ads[0] = new adBanner('../images/ads/Anheuser-BuschSales.jpg', 'http://anheuser-busch.com/');
ads[1] = new adBanner('../images/ads/UETA.jpg', 'http://www.dutyfreeamericas.com', 4);
ads[2] = new adBanner('../images/ads/Sycuan.jpg', 'http://www.sycuan.com/sycuan_casino/index.html');
ads[3] = new adBanner('../images/ads/sdge.jpg', 'http://www.sdge.com/');
ads[4] = new adBanner('../images/ads/UETA.jpg', 'http://www.dutyfreeamericas.com', 4);
ads[5] = new adBanner('../images/ads/Walmart.jpg', 'http://www.walmart.com/');

function adBanner(src, href, delay) {
	this.src = src;
	this.href = href;
	if(typeof(delay) == 'undefined')
		this.delay = defaultDelay;
	else
		this.delay = delay;
}

bannerNum = 0;
function changeBanner()
{
	document.getElementById('bannerPic').src = ads[bannerNum].src;
	document.getElementById('bannerLink').href = ads[bannerNum].href;
	setTimeout('changeBanner()', ads[bannerNum].delay*1000);
	bannerNum = (bannerNum+1)%ads.length;
}
