// JavaScript Document
//This document lists all the advert images and URL's and rotates them automatically.
//Starting with a randomly

/***************top ad animation**********************/
MM_preloadImages('adverts/firstwin.jpg','adverts/vodafone_ad.jpg' ,'adverts/MagicTile.jpg','adverts/mother-earth.jpg');
adImages = new Array('adverts/firstwin.jpg','adverts/vodafone_ad.jpg', 'adverts/MagicTile.jpg','adverts/mother-earth.jpg');
adURLs = new Array('www.firstwindows.co.nz','www.vodafonenetballtribe.co.nz/default.aspx', 'www.anznetball.co.nz/', 'www.motherearth.co.nz/');
thisAd = Math.floor(Math.random()*4);
imgCt = adImages.length;
var thisTopUrl;
var thisTopPic

function rotateTop(){
	if (document.images){
		thisAd++;
		if(thisAd == imgCt){
			thisAd = 0;
		}
			document.topAd.src=adImages[thisAd];
			thisTopPic=adImages[thisAd];
			thisTopUrl=adURLs[thisAd];
			setTimeout("rotateTop()",20*1000);
	}
}

/***************bottom ad animation**********************/
MM_preloadImages('adverts/hamilton.jpg','adverts/classic-r.jpg', 'adverts/classic-h.jpg','adverts/red_stag.jpg','adverts/amour.jpg','adverts/cbd.jpg','adverts/ebbett.jpg' ,'adverts/emda.jpg','adverts/kale.jpg','adverts/kelly.jpg','adverts/mills-reef.jpg','adverts/mirage.jpg','adverts/mystery-creek.jpg','adverts/otakiri.jpg','adverts/printex.jpg','adverts/vet.jpg');

adImages2 = new Array('adverts/hamilton.jpg','adverts/classic-r.jpg', 'adverts/classic-h.jpg','adverts/red_stag.jpg','adverts/amour.jpg','adverts/cbd.jpg','adverts/ebbett.jpg' ,'adverts/emda.jpg','adverts/kale.jpg','adverts/kelly.jpg','adverts/mills-reef.jpg','adverts/mirage.jpg','adverts/mystery-creek.jpg','adverts/otakiri.jpg','adverts/printex.jpg','adverts/vet.jpg');

adURLs2 = new Array('www.hamiltoncity.co.nz','www.radionetwork.co.nz', 'www.radionetwork.co.nz','www.redstag.co.nz','www.underarmour.com','www.cbdpub.co.nz','www.ebbetts.co.nz','www.emda.co.nz','www.kaleprint.co.nz','www.kellysports.com.au','www.millsreef.co.nz','www.miragedesign.co.nz' ,'www.mysterycreek.co.nz','www.otakirisprings.co.nz','www.printex.co.nz', 'www.thevetcentre.com');
thisAd2 = Math.floor(Math.random()*16);
imgCt2 = adImages2.length;
var thisBottomUrl;
var thisBottomPic
function rotateBottom(){
	if (document.images){
		thisAd2++;
		if(thisAd2 == imgCt2){
			thisAd2 = 0;
		}
			document.bottomAd.src=adImages2[thisAd2];
			thisBottomPic=adImages2[thisAd2];
			thisBottomUrl=adURLs2[thisAd2];
			setTimeout("rotateBottom()",20*1000);
	}
}

function startAds(){
	rotateTop();
	document.bottomAd.src=adImages2[thisAd2];
	thisBottomUrl=adURLs2[thisAd2];
	setTimeout("rotateBottom()",10*1000);
}

function topClick(){
	top.location='http://www.netballmagic.co.nz/clickthrough.php?url='+thisTopUrl+'&picname='+thisTopPic;
}

function bottomClick(){
	top.location='http://www.netballmagic.co.nz/clickthrough.php?url='+thisBottomUrl+'&picname='+thisBottomPic;
}