// Year starts 1st August for advertisers.

var imgs = new Array(13)
imgs[0] = "ads/eezee_banner.gif"
imgs[1] = "ads/Alford Brothers.gif"
imgs[2] = "ads/John Hull.gif"
imgs[3] = "ads/rf.gif"
imgs[4] = "ads/Dave Fox.gif"
imgs[5] = "ads/Promoto KD.gif"
imgs[6] = "ads/Kent Motorcycles.gif"
imgs[7] = "ads/Andrews Garage.gif"
imgs[8] = "ads/airportcafe.gif"
imgs[9] = "ads/mojoleather.gif"
imgs[10] = "ads/ultimateear.gif"
imgs[11] = "ads/highbanks.gif"
imgs[12] = "ads/BandM.gif"

var lnks = new Array(13)
lnks[0] = "http://www.eezee-web.co.uk/billing/aff.php?aff=002"
lnks[1] = "http://www.alfordbros.co.uk"
lnks[2] = "http://www.aims.co.uk"
lnks[3] = "http://www.robinsonsfoundry.co.uk"
lnks[4] = "http://www.davefoxmotorcycles.com"
lnks[5] = "http://www.kerrydunlop.co.uk"
lnks[6] = "http://www.kent-motorcycles.co.uk/"
lnks[7] = ""
lnks[8] = ""
lnks[9] = ""
lnks[10] = "http://www.ultimateear.com"
lnks[11] = "http://www.highbanksnursery.co.uk/"
lnks[12] = "http://www.bmmotorcycles.co.uk"

var altimg = new Array(13)
altimg[0] = "Eezee Web Solutions - Our Host"
altimg[1] = "Alford Brothers Ltd."
altimg[2] = "John Hull, FCMA"
altimg[3] = "Robinsons Foundry"
altimg[4] = "Dave Fox Motorcycles"
altimg[5] = "Promoto KD"
altimg[6] = "Kent Motorcycles"
altimg[7] = "Andrews Garage"
altimg[8] = "The Airport Café"
altimg[9] = "Mo-Jo Leathers"
altimg[10] = "Ultimate Ear Protection"
altimg[11] = "High Banks Coffee Shop & Cafe"
altimg[12] = "B&M Motorcycles"

var tOut = new Array (4,4,4,6,4,4,4,4,4,4,4,4,4)
var currentAd = 0
var prevAd = 0
var imgCt = 13

function cycle() {
currentAd = Math.floor(Math.random() * imgCt)
if (currentAd == prevAd) {
	currentAd = prevAd + 1
	}
if (currentAd > imgCt) {
	currentAd = 0
	}
prevAd = currentAd
document.adBanner.src=imgs[currentAd]
document.adBanner.alt=altimg[currentAd]
document.getElementById('adLink').href=lnks[currentAd]
setTimeout("cycle()",tOut[currentAd] * 1000)
}
