var sponsorImage = new Array //List all of the sponsors images
("stayers.gif","atrec420.gif");
//OLD Banners,"austTrainers.gif","420_justracing.gif","advertise.gif","468_60_sectional.gif","bris_melb_syd_just.jpg"
var sponsorLink = new Array // List all of the sponsors links. Must correspond with the above images
("/stayersChallenge/stayersChallenge.html","http://www.atrec.com.au/")
// advertising link - ,"mailto:racingassist@australian-racing.net.au?subject=ARB Internet Banner Advertising&body=Dear Jake,");
//austTrainers link - "http://www.racehorsetrainer.com.au/"
//420_just racing link - "http://www.justracing.com.au/?hitid=1"
//,"http://www.justracing.com.au","http://www.justracing.com.au"
var sponsorShown = (Math.floor(Math.random() * sponsorImage.length));//This sets initial random sponsor
//alert(sponsorImage.length)

document.write('<table width="100%"  border="0" cellpadding="0" cellspacing="0" background="/images/logos/backgroundGradient.jpg">')
document.write('<tr><td width="280" align="left"><a href="/index.htm"><img src="/images/logos/arbLogoAndy.jpg" width="531" height="80" border="0" usemap="#Map"></a></td><td align="right"><a id="sponsorLink" href="'+sponsorLink[sponsorShown]+'"><img id="sponsor" src="/images/ad/'+sponsorImage[sponsorShown]+'" width="420" height="60" border="0"></a>  </td></tr></table>')

document.write('<map name="Map">')
document.write('  <area shape="rect" coords="480,44,531,66" href="http://www.darwinturfclub.org.au" target="_blank" alt="Darwin Turf Club" title="Darwin Turf Club">')
document.write('  <area shape="rect" coords="404,44,481,67" href="http://www.racenet.com.au/canberra/" target="_blank" alt="Canberra Racing" title="Canberra Racing">')
document.write('  <area shape="rect" coords="365,44,403,67" href="http://www.tasracing.com.au/" target="_blank" alt="Tasmanian Racing" title="Tasmanian Racing">')
document.write('  <area shape="rect" coords="286,43,363,66" href="http://www.rwwa.com.au/" target="_blank" alt="Racing and Wagering Western Australia" title="Racing and Wagering Western Australia">')
document.write('  <area shape="rect" coords="121,44,163,68" href="http://www.racingnsw.com.au/" target="_blank" alt="Racing NSW" title="Racing NSW">')
document.write('  <area shape="rect" coords="165,44,212,67" href="http://www.racingvictoria.net.au/" target="_blank" alt="Racing Victoria" title="Racing Victoria">')
document.write('  <area shape="rect" coords="214,44,245,66" href="https://www.queenslandracing.com.au/index.asp" target="_blank" alt="Queensland Racing" title="Queensland Racing">')
document.write('  <area shape="rect" coords="246,43,287,66" href="http://www.trsa.com.au/" target="_blank" alt="Racing South Australia" title="Racing South Australia">')
document.write('  <area shape="poly" coords="118,76,4,76,3,3,443,3,439,40,117,38" href="/index.htm" alt="Australian Racing Board">')

document.write('</map>')


//remove below function and setTimeout if you do not wish sponsors to rotate on page. Don't forget to set above image id to 'sponsor'
function rotateBanner(){
	var sponsorShown = (Math.floor(Math.random() * sponsorImage.length));
	document.getElementById('sponsor').src="/images/ad/"+sponsorImage[sponsorShown]
	document.getElementById('sponsorLink').href=sponsorLink[sponsorShown]
	setTimeout("rotateBanner()", 20000)
}
setTimeout("rotateBanner()", 20000);
//
