window.onload = initBannerLink;

var thisAd = 0;
var thisAd2 = 0;

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

/* =============================================
DO NOT CHANGE ANYTHING ABOVE THIS LINE**********
To change banners simply add or subtract 
from the arrays listed below (example: adURL[0])
(0 is the first digit not 1)
============================================= */

function newLocation() {
	var adURL = new Array()
	adURL[0] = 'steelcityderbydemons.com'
	adURL[1] = 'jesterscourttattoos.com'
	adURL[2] = 'steelcityderbydemons.com'
	adURL[3] = 'steelcityderbydemons.com'
	adURL[4] = 'steelcityderbydemons.com'
	if (thisAd == 1) {
	var newWindow=window.open();
	newWindow.document.location.href = "http://www." + adURL[thisAd];
	} else {
		//document.location.href = "http://www." + adURL[thisAd];
		document.location.href = "http://www.steelcityderbydemons.com";
	}
	
	return false;
}
function newLocation2() {
	var adURL2 = new Array()
	var newWindow2=window.open();
	adURL2[0] = 'aflac.com'
	adURL2[1] = 'arnicare.com'
	adURL2[2] = 'steelcityderbydemons.com'
	adURL2[3] = '15104.cc'
	adURL2[4] = 'ceotpgh.com'
	adURL2[5] = 'cottonfactory.com'
	adURL2[6] = 'hotrodpiercingcompany.com'
	adURL2[7] = 'innervisionbodyart.com'
	adURL2[8] = 'jesterscourttattoos.com'
	adURL2[9] = 'nightwire.com'
	adURL2[10] = 'pratiquespace.com'
	adURL2[11] = 'rollergirlskates.com'
	adURL2[12] = 'scarehouse.com'
	adURL2[13] = 'sincityskates.com'
	adURL2[14] = 'toonbrian.com'
	newWindow2.document.location.href = "http://www." + adURL2[thisAd2];
	return false;
}

function rotate() {
	var adImages = new Array()
	adImages[0] = '../images/TopBannerSCDD1.jpg'
	adImages[1] = '../images/TopBannerSCDD2.jpg'
	adImages[2] = '../images/TopBannerSCDD3.jpg'
	adImages[3] = '../images/TopBannerSCDD4.jpg'
	adImages[4] = '../images/TopBannerSCDD5.jpg'
	
	var adImages2 = new Array()
	adImages2[0] = '../sponsors/images/aflac.jpg'
	adImages2[1] = '../sponsors/images/arnicare.jpg'
	adImages2[2] = '../sponsors/images/ATS.jpg'
	adImages2[3] = '../sponsors/images/braddock.jpg'
	adImages2[4] = '../sponsors/images/CEOT.jpg'
	adImages2[5] = '../sponsors/images/cotton-factory.jpg'
	adImages2[6] = '../sponsors/images/hot-rod-piercing.jpg'
	adImages2[7] = '../sponsors/images/inner-vision-body-art.jpg'
	adImages2[8] = '../sponsors/images/jesters-court.jpg'
	adImages2[9] = '../sponsors/images/night-wire.jpg'
	adImages2[10] = '../sponsors/images/pratique-yoga.jpg'
	adImages2[11] = '../sponsors/images/rollergirl-skates.jpg'
	adImages2[12] = '../sponsors/images/scarehouse.jpg'
	adImages2[13] = '../sponsors/images/sin-city-skates.jpg'
	adImages2[14] = '../sponsors/images/toonbrian.jpg'

/* =============================================
DO NOT CHANGE ANYTHING BELOW THIS LINE**********
============================================= */

	thisAd++;
	if (thisAd == adImages.length) {
		thisAd = 0;
	}
	thisAd2++;
	if (thisAd2 == adImages2.length) {
		thisAd2 = 0;
	}
	document.getElementById("adBanner").src = adImages[thisAd];
	document.getElementById("adBanner2").src = adImages2[thisAd2];
	setTimeout(rotate, 4 * 1000);
}
