var theImages = new Array()
var theTitles = new Array()

theImages[0] = 'images/homepage/amphitheatre.jpg'
theImages[1] = 'images/homepage/arc.jpg'
theImages[2] = 'images/homepage/band.jpg'
theImages[3] = 'images/homepage/cheer_flag.jpg'
theImages[4] = 'images/homepage/football_flag.jpg'
theImages[5] = 'images/homepage/fountain.jpg'
theImages[6] = 'images/homepage/garden_of_constants.jpg'
theImages[7] = 'images/homepage/knowlton_columns.jpg'
theImages[8] = 'images/homepage/lane_ave_bridge.jpg'
theImages[9] = 'images/homepage/library_plaza.jpg'
theImages[10] = 'images/homepage/main_library1.jpg'
theImages[11] = 'images/homepage/mirror_lake.jpg'
theImages[12] = 'images/homepage/o_h_i_o.jpg'
theImages[13] = 'images/homepage/ohio_stadium1.jpg'
theImages[14] = 'images/homepage/orton1.jpg'
theImages[15] = 'images/homepage/oval_aerial_view.jpg'
theImages[16] = 'images/homepage/oval_spring.jpg'
theImages[17] = 'images/homepage/page_hall.jpg'
theImages[18] = 'images/homepage/riffe_bldg.jpg'
theImages[19] = 'images/homepage/rotunda_windows.jpg'
theImages[20] = 'images/homepage/script_ohio.jpg'
theImages[21] = 'images/homepage/towers.jpg'
theImages[22] = 'images/homepage/wexner_center.jpg'
theImages[23] = 'images/homepage/main_library2.jpg'
theImages[24] = 'images/homepage/ohio_stadium2.jpg'
theImages[25] = 'images/homepage/orton2.jpg'
theImages[26] = 'images/homepage/oval_autumn.jpg'
theImages[27] = 'images/homepage/oval_winter.jpg'

theTitles[0] = 'Amphitheater'
theTitles[1] = 'Adventure Recreation Center'
theTitles[2] = 'TBDBITL'
theTitles[3] = 'Cheer Flag'
theTitles[4] = 'Football Flag'
theTitles[5] = 'Mirror Lake Fountain'
theTitles[6] = 'Garden Of Constants'
theTitles[7] = 'Knowlton Columns'
theTitles[8] = 'Lane Avenue Bridge'
theTitles[9] = 'Library Plaza'
theTitles[10] = 'Main Library'
theTitles[11] = 'Mirror Lake'
theTitles[12] = 'O-H-I-O'
theTitles[13] = 'Ohio Stadium'
theTitles[14] = 'Orton Hall'
theTitles[15] = 'Oval - Aerial View.jpg'
theTitles[16] = 'Oval In Spring.jpg'
theTitles[17] = 'Page Hall'
theTitles[18] = 'Riffe Building'
theTitles[19] = 'Rotunda Windows'
theTitles[20] = 'Script OHIO'
theTitles[21] = 'Lincoln Towers'
theTitles[22] = 'Wexner Center'
theTitles[23] = 'Main Library'
theTitles[24] = 'Ohio Stadium'
theTitles[25] = 'Orton Hall Bell'
theTitles[26] = 'Oval In Autumn'
theTitles[27] = 'Oval In Winter'

var whichImage = Math.round(Math.random()*(theImages.length-1));
var seconds = "2";

function homePageImage(){
  document.myimg.src = theImages[whichImage];
  document.myimg.title = theTitles[whichImage];
  whichImage = Math.round(Math.random()*(theImages.length-1));
  setTimeout("homePageImage()", seconds * 1500);
}
