var theImages = new Array() 
var theAlts = new Array() 

var imagepath = 'http://www.indstate.edu/hmsu/images/';

theImages[0] = imagepath + 'leclub entrance.jpg'
theAlts[0] = 'Girls in Connections Lounge at HMSU'

theImages[1] = imagepath + 'reading.jpg'
theAlts[1] = 'Girl on Dede Plaza reading'

theImages[2] = imagepath + 'syc_sam.jpg'
theAlts[2] = 'Sycamore Sam pointing to the Union'

theImages[3] = imagepath + 'artpiano.jpg'
theAlts[3] = 'Art Gallery pianist'

theImages[4] = imagepath + 'studentstaff.jpg'
theAlts[4] = 'Student Staff'

theImages[5] = imagepath + 'gallery.jpg'
theAlts[5] = 'Art Gallery Lounge'

theImages[6] = imagepath + 'ikon1.jpg'
theAlts[6] = 'IKON Resource Center'



var j = 0
var p = theImages.length;
var preBuffer = new Array()

var whichImage = Math.round(Math.random()*(p-1));

preBuffer = new Image();
preBuffer.src = theImages[whichImage];

function showImage(){
document.write('<img width=216 height=164 src="'+theImages[whichImage]+'" border=0 alt="' + theAlts[whichImage] + '">');

}


var theImages1 = new Array() 
var theAlts1 = new Array() 

var imagepath1 = 'http://www.indstate.edu/hmsu/images/';

theImages1[0] = imagepath1 + 'leclub guy'
theAlts1[0] = 'Student exercising at HMSU LeClub'

theImages1[1] = imagepath1 + 'cl-tv.jpg'
theAlts1[1] = 'Connections Lounge'

theImages1[2] = imagepath1 + 'ic-computers.jpg'
theAlts1[2] = 'MyISU'

theImages1[3] = imagepath1 + 'c-einstiens.jpg'
theAlts1[3] = 'Einstein Brothers Bagels'

theImages1[4] = imagepath1 + 'bkstore.jpg'
theAlts1[4] = 'ISU Bookstore'

theImages1[5] = imagepath1 + 'o-sga.jpg'
theAlts1[5] = 'SGA Office'

theImages1[6] = imagepath1 + 'quiet lounge.jpg'
theAlts1[6] = 'Quiet Lounge'

var k = 0
var l = theImages1.length;
var preBuffer1 = new Array()

var whichImage1 = Math.round(Math.random()*(p-1));

preBuffer1 = new Image();
preBuffer1.src = theImages1[whichImage1];

function showImage1(){
document.write('<img width=216 height=164 src="'+theImages1[whichImage1]+'" border=0 alt="' + theAlts1[whichImage1] + '">');

}