// Adds
adImages = new Array( "/images/NMCycling.png", "/images/phm.jpg", "/images/YogaForCyclists.png", "/images/qcycle.png", "/images/adventureadvocates.gif", "/images/DCWF_sm.png"  )
adURLs = new Array( "http://www.nmcycling.org/", "http://paulahigginsfoundation.org/", "/flyers/2009/YogaForAthletes.pdf", "http://www.qcycle.com/", "http://www.adventureadvocates.com/", "http://www.dukecitywheelmen.org" )
adIndx = 0
adCt = adImages.length

function rotate_ads() {
  document.adBanner.src=adImages[adIndx];
  adlink = document.getElementById('adURL');
  adlink.setAttribute('href', adURLs[adIndx]);
  setTimeout("rotate_ads()", 3 * 1000);
  adIndx++;
  if (adIndx == adCt) {
    adIndx = 0;
  }
}

// Photos
Photos = new Array( "/photos/gila-sf1.jpg", "/photos/gila-sf2.jpg", "/photos/gila-sf3.jpg", "/photos/gila-sf4.jpg", "/photos/gila-sf5.jpg", "/photos/gila-sf6.jpg", "/photos/gila-sf7.jpg", "/photos/gila-sf8.jpg" )
photoIndx = 0
photoCt = Photos.length

function rotate_photos() {
  document.mainPhoto.src=Photos[photoIndx];
  setTimeout("rotate_photos()", 4 * 1000);
  photoIndx++;
  if (photoIndx == photoCt) {
    photoIndx = 0;
  }
}

function rotate() {
    rotate_ads();
    rotate_photos();
}


