<!--

// Set image paths
src = ["/img/sidebar1.jpg", 
"/img/sidebar2.jpg", 
"/img/sidebar3.jpg", 
"/img/sidebar4.jpg", 
"/img/sidebar5.jpg", 
"/img/sidebar6.jpg", 
"/img/sidebar7.jpg"]

// Set duration for each image
duration = 10;

// Script
ads=[]; ct=0;

function switchAd() {
  var n=(ct+1)%src.length;
  if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
    document["Ad_Image"].src = ads[ct=n].src;
  }
  ads[n=(ct+1)%src.length] = new Image;
  ads[n].src = src[n];
  setTimeout("switchAd()",duration*1000);
}

onload = function() {
  if (document.images)
  switchAd();
}

//-->