var inspectionImg = new Array();
  // Enter the names of the images below
  inspectionImg[0]="images/Lady on Lilo 2.jpg";
  inspectionImg[1]="images/pool.jpg";
  inspectionImg[2]="images/Soto-cafe.jpg";

var newinspection = 0;
var totalBan = inspectionImg.length;

function cycleBan() {
  newinspection++;
  if (newinspection == totalBan) {
    newinspection = 0;
  }
  document.inspection.src=inspectionImg[newinspection];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 4*1000);
}
window.onload=cycleBan;
