
var imgs1 = new Array("images/sponsors/nationwide.jpg","images/sponsors/exec-it.jpg","images/sponsors/eddies.jpg","images/sponsors/forte.gif","images/sponsors/cicis.jpg","images/sponsors/littlecaesars.png","images/sponsors/yogurtworld.jpg","images/sponsors/musicgoround.png","images/sponsors/alwaysfresh.jpg","images/sponsors");
var lnks1 = new Array("sponsors.html","sponsors.html","sponsors.html","sponsors.html","sponsors.html","sponsors.html","sponsors.html","sponsors.html","sponsors.html","sponsors.html");
var alt1 = new Array("Nationwide","Exec-IT","Eddie's Automotive","Forte","CiCi's Pizza","Little Caesars Pizza","Yogurt World","Music Go Round","Always Fresh Neighborhood Restaurant","State Collision Center");
var currentAd1 = 0;
var imgCt1 = 9;
function cycle1() {
  if (currentAd1 == imgCt1) {
    currentAd1 = 0;
  }
var banner1 = document.getElementById('adBanner1');
var link1 = document.getElementById('adLink1');
  banner1.src=imgs1[currentAd1]
  banner1.alt=alt1[currentAd1]
  document.getElementById('adLink1').href=lnks1[currentAd1]
  currentAd1++;
}
  window.setInterval("cycle1()",3000);

