// JScript File
// Display the main images on the home page

var mainImg = new Array();
  // Enter the names of the images below
  mainImg[0]="Image/earthart.jpg";
  mainImg[1]="Image/clearance.jpg";
  mainImg[2]="Image/danbyhome.jpg";
  mainImg[3]="Image/rforest.jpg";
  mainImg[4]="Image/thousands.jpg";
  
  
  
 

var newMain = 0;
var totalMain = mainImg.length;

function cycleMain() {
  newMain++;
  if (newMain == totalMain) {
    newMain = 0;
  }
  document.main.src=mainImg[newMain];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleMain()", 8*1000);
}
window.onload=cycleMain;





