window.onload = initBannerLink;

var adImages = new Array(
    "images/sponsors/1.gif",
    "images/sponsors/2.gif",
    "images/sponsors/3.gif",
    "images/sponsors/4.gif",
    "images/sponsors/5.gif",
    "images/sponsors/6.gif",
    "images/sponsors/7.gif",
    "images/sponsors/8.gif",
	"images/sponsors/9.gif",
	"images/sponsors/10.gif",
	"images/sponsors/11.gif",
	"images/sponsors/12.gif",
	"images/sponsors/13.gif",
	"images/sponsors/14.gif",
	"images/sponsors/15.gif",
	"images/sponsors/16.gif",
	"images/sponsors/17.gif",
	"images/sponsors/18.gif"
    );
    
var adURL = new Array(
    "oscars.org/foundation",
    "www.lommen.com",
    "kpmgcampus.com/campus",
    "fredlaw.com",
    "209.68.2.47/bbco/about/",
    "hobbittravel.com",
    "minneapolis.edu",
    "whoopdesign.com",
	"www.visitduluth.com",
	"www.redonecine.com/",
	"www.arts.state.mn.us/",
	"www.sagindie.org",
	"www.stpaul.gov/index.asp?NID=1166",
	"www.metromag.com/",
	"www.panasonic.com/",
	"www.radisson.com/minneapolismn_plaza",
	"usa.canon.com/home",
	"sites.target.com/site/en/company/page.jsp?contentId=WCMP04-031767"
    );
    
var thisAd = 0;

function rotate() {
	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];

	setTimeout("rotate()", 3 * 1000);
}

function newLocation() {
	// document.location.href = "http://www." + adURL[thisAd];
	
    window.open("http://" + adURL[thisAd]);
    
    return false;
}

function initBannerLink() {
	if (document.getElementById("adBanner").parentNode.tagName == "A") {
		document.getElementById("adBanner").parentNode.onclick = newLocation;
	}
	
	rotate();
}
