/** Roop Singh - March 27/08 - rotating advertisement (per page load)* rndNum - array index number: needs to be one higher than highest array entry* imagesPath - static location of all ads** filenames, links, comments - array of filenames, links and comments respectivley* need to be 1:1 matching (ie freshair is item zero in all arrays)**/var rndNum=Math.floor(Math.random()*20);var imagesPath = "http://ottawamba.org/images/";var filenames = new Array();filenames[0] = "freshair.jpg";filenames[1] = "BUSHTUKAH.jpg";filenames[2] = "JOE_MAMMA.jpg";filenames[3] = "FULL_CYCLE.jpg";filenames[4] = "BMOLogoNew.jpg";filenames[5] = "mtbhost_logo_small.jpg";filenames[6] = "dinardologo.jpg";filenames[7] = "phatmoose.jpg";filenames[8] = "creativewheel.gif";filenames[9] = "trailpeak.gif";filenames[10] = "bicyclettedehull.jpg";filenames[11] = "ratedmbiking.jpg";filenames[12] = "mec.jpg";filenames[13] = "ttc_logo.jpg";filenames[14] = "westboro.jpg";filenames[15] = "cyclepower.gif";filenames[16] = "imba.gif";filenames[17] = "joinus_button.png";filenames[18] = "autoracks.gif";filenames[19] = "harveys.png";var links = new Array();links[0] = "http://www.freshairexp.com/";links[1] = "http://www.bushtukah.com/";links[2] = "http://www.joemamma.ca/";links[3] = "http://www.fullcycle.ca/";links[4] = "http://www.bmo.com/";links[5] = "http://www.mtbhost.com/";links[6] = "http://www.dinardoskis.com/";links[7] = "http://www.phatmoosecycles.com/";links[8] = "http://www.creativewheel.ca";links[9] = "http://www.trailpeak.com/";links[10] = "http://www.bicyclettesdehull.com/";links[11] = "http://www.ratedmbiking.com/";links[12] = "http://www.mec.ca/";links[13] = "http://www.talltreecycles.ca/";links[14] = "http://www.westborophysiotherapy.com/";links[15] = "http://www.cyclepower.ca/";links[16] = "http://www.imba.com/canada/";links[17] = "http://ottawamba.org/OMBA2/membership.html";links[18] = "http://www.autoracks.com/";links[19] = "http://www.harveys.ca/";var comments = new Array();comments[0] = "";comments[1] = "Great outdoor gear<br><br>";comments[2] = "";comments[3] = "";comments[4] = "";comments[5] = "MTBhost web hosting<br><br>";comments[6] = "";comments[7] = "";comments[8] = "";comments[9] = "";comments[10] = "";comments[11] = "";comments[12] = "";comments[13] = "";comments[14] = "";comments[15] = "";comments[16] = "";comments[17] = "Join OMBA!<br><br>";comments[18] = "";comments[19] = "It's a beautiful thing.";//output random linksdocument.write("<center><a href=" + links[rndNum] + "><img border=0 src=" + imagesPath + filenames[rndNum] + "></a><br></center>");if (comments[rndNum] != "" ) {	document.write("<center><a href=" + links[rndNum] + ">" + comments[rndNum] + "</a></center>");}//end rotating ads//menu is belowdocument.write("<center>");document.write("<A id='menu1' href='http://ottawamba.org/OMBA2/index.html'>Home</A>");document.write("<A id='menu2' href='http://ottawamba.org/OMBA2/news.html'>News and Updates</A>");//document.write("<A id='menu5' href='http://ottawamba.org/cgi-bin/ikonboard/ikonboard.cgi?act=RideScheduler'>Rides</A>");document.write("<A id='menu9' href='http://ottawamba.org/OMBA2/trails.html'>Trails</A>");document.write("<A id='menu8' href='http://ottawamba.org/OMBA2/advocacy.html'>Advocacy</A>");document.write("<A id='menu15' href='http://ottawamba.org/OMBA2/donate.html' class='donate'>Donate</A>");document.write("<A id='menu10' href='http://ottawamba.org/OMBA2/sponsors.html'>Sponsors</A>");document.write("<A id='menu11' href='http://ottawamba.org/OMBA2/links.html'>Links</A>");document.write("<A id='menu12' href='http://ottawamba.org/OMBA2/membership.html'>Join Us</A>");document.write("<A id='menu13' href='http://ottawamba.org/OMBA2/exec.html'>About Us</A>");document.write("<A id='menu14' href='http://ottawamba.org/forums/forum.php'>Forums</A>");document.write("</center>");//document.write("<A id='menu3' href='http://ottawamba.org/cgi-bin/ikonboard/ikonboard.cgi?act=Calendar;CODE=1'>Events</A>");//document.write("<A id='menu4' href='http://ottawamba.org/OMBA2/trails.html'>Trails</A>");//document.write("<A id='menu9' href='http://ottawamba.org/OMBA2/media.html'>Media</A>");//document.write("<A id='menu6' href='clinics.html'>Clinics</A>");
