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

var newrotation = 0;
var totalBan = rotationImg.length;

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