function slideshow() {

SlideChangeTime = 10000; // slide change delay in milliseconds
images = new Array(19); //1-based number of images

// 0-based Image HTML array
images[0] = "<img src=\"slides/bldg1_harkness-tower-2.jpg\" alt=\"Harkness Tower in the Fall\" border=\"0\" width=\"160\" height=\"250\">";
images[1] = "<img src=\"slides/bldg1_sterling-library.jpg\" alt=\"Sterling Memorial Library\" border=\"0\" width=\"160\" height=\"250\">";
images[2] = "<img src=\"slides/bldg1_woolsey.jpg\" alt=\"Woolsey Hall\" border=\"0\" width=\"160\" height=\"250\">";
images[3] = "<img src=\"slides/bldg3_becton-center2.jpg\" alt=\"Becton Engineering and Applied Science Center\" border=\"0\" width=\"160\" height=\"250\">";
images[4] = "<img src=\"slides/bldg3_full-size-yh-100th-ga_centered.jpg\" alt=\"Bird\'s Eye View of the Yale-Harvard (American Football) Game at Yale Bowl\" border=\"0\" width=\"225\" height=\"205\">";
images[5] = "<img src=\"slides/gate1_dsc_0012.jpg\" alt=\"Gate into the Hall of Graduate Studies\" border=\"0\" width=\"160\" height=\"250\">";
images[6] = "<img src=\"slides/gate1_dsc_0035.jpg\" alt=\"Archway into Branford College\" border=\"0\" width=\"160\" height=\"250\">";
images[7] = "<img src=\"slides/ioy1_013.jpg\" alt=\"View along Prospect Street\" border=\"0\" width=\"160\" height=\"250\">";
images[8] = "<img src=\"slides/ioy1_036_centered.jpg\" alt=\"Classrooms with Real Blackboards!\" border=\"0\" width=\"245\" height=\"205\">";
images[9] = "<img src=\"slides/ioy11_dsc_0034_centered.jpg\" alt=\"Overview of Timothy Dwight College\" border=\"0\" width=\"250\" height=\"205\">";
images[10] = "<img src=\"slides/ioy11_old_campus_winter.jpg\" alt=\"Wintry Old Campus\" border=\"0\" width=\"160\" height=\"250\">";
images[11] = "<img src=\"slides/ioy2_overview-of-campus_centered.jpg\" alt=\"Campus Overview\" border=\"0\" width=\"250\" height=\"205\">";
images[12] = "<img src=\"slides/ioy3_class-on-campus2_centered.jpg\" alt=\"Perfect Weather for Classes on the Old Campus\" border=\"0\" width=\"250\" height=\"205\">";
images[13] = "<img src=\"slides/ioy3_reading-old-campus-3.jpg\" alt=\"Studying on the Old Campus\" border=\"0\" width=\"160\" height=\"250\">";
images[14] = "<img src=\"slides/ioy3_snow-3_centered.jpg\" alt=\"Noah Porter Gate on the Cross Campus\" border=\"0\" width=\"250\" height=\"205\">";
images[15] = "<img src=\"slides/ioy3_soccer_centered.jpg\" alt=\"Jonathan Edwards College Intramural Soccer (Football) Game\" border=\"0\" width=\"250\" height=\"205\">";
images[16] = "<img src=\"slides/ioy4_old-campus-night_centered.jpg\" alt=\"Nighttime View of Durfee Hall and Battell Chapel on the Old Campus\" border=\"0\" width=\"250\" height=\"205\">";
images[17] = "<img src=\"slides/ioy5_davenport_centered.jpg\" alt=\"Georgian Architecture in a Davenport College Courtyard\" border=\"0\" width=\"250\" height=\"205\">";
images[18] = "<img src=\"slides/ioy7_yale-dartmouth_centered.jpg\" alt=\"Yale-Dartmouth (American) Football Game\" border=\"0\" width=\"225\" height=\"205\">";

// initialize image
document.getElementById("boxseat").innerHTML = images[11];
nextIndex=11;
swapImage();  // change the image

// repeat every interval
timerID = setInterval(swapImage,SlideChangeTime);

}

function swapImage() {
  document.getElementById("boxseat").innerHTML = images[nextIndex];
  // choose index between 0 and UBound(images)
  index = Math.round(Math.random() * (images.length-1));
  if (index == nextIndex) {  // recurse if new index same as last index
   swapImage();
  }
  nextIndex=index;
  // assign new image to tag ID
  document.getElementById("noshow").innerHTML = images[nextIndex];
}


