

var bannerImg = new Array();
  // Enter the names of the images below
  bannerImg[0]="clausura08-09_port_antes.jpg"
  bannerImg[1]="3x3Junio2009peque.jpg";

var bannerLnk = new Array();
  bannerLnk[0]="http://cb.villanuevadelacanada.com/Noticias.html#noticia 200";
  bannerLnk[1]="http://cb.villanuevadelacanada.com/Noticias.html#noticia 201";

var newBanner = 0;
var totalBan = bannerImg.length;

function cycleBan() {
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 0;
  }

  window.document["banner"].src =bannerImg[newBanner];
  window.document.links[14].href =bannerLnk[newBanner];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 4*1000);
}
window.onload=cycleBan;
