var theImages = new Array() theImages[0] = '<img src="images/homephotos/archer.jpg" alt="Image of boy learning archery - Teaching/Coaching option" />'theImages[1] = '<img src="images/homephotos/bodpod.jpg" alt="Image of man in the BodPod while researchers analyze - Exercise Science/Wellness Management" />'theImages[2] = '<img src="images/homephotos/climbing.jpg" alt="Image of man on climbing wall wearing movement analysis equipment - Movement Analysis Lab" />'theImages[3] = '<img src="images/homephotos/kids.jpg" alt="Image of kids having fun with a giant parachute - Teaching/Coaching option" />'theImages[4] = '<img src="images/homephotos/soccerbandage.jpg" alt="Image of woman bandaging a soccer players ankle - Athletic Training Education Program" />'theImages[5] = '<img src="images/homephotos/softball.jpg" alt="Image of woman watching softball game in dugout - Intramural Sports" />'theImages[6] = '<img src="images/homephotos/soccer.jpg" alt="Image of mens soccer team during game - Intramural Sports" />'var j = 0var p = theImages.length;var preBuffer = new Array()for (i = 0; i < p; i++){   preBuffer[i] = new Image()   preBuffer[i].src = theImages[i]}var whichImage = Math.round(Math.random()*(p-1));function showImage(){document.write(theImages[whichImage]);}