// Set up the image files to be used.var theImages = new Array() // do not change this// To add more image files, continue with the// pattern below, adding to the array.theImages[0] = 'images/370_randoms/ltrain.jpg'theImages[1] = 'images/370_randoms/ferns.jpg'theImages[2] = 'images/370_randoms/chicago4.jpg'theImages[3] = 'images/370_randoms/portsunlight.jpg'theImages[4] = 'images/370_randoms/chicago3.jpg'theImages[5] = 'images/370_randoms/battersea.jpg'theImages[6] = 'images/370_randoms/delta.jpg'theImages[7] = 'images/370_randoms/bluesky.jpg'theImages[8] = 'images/370_randoms/sheldrakes.jpg'theImages[9] = 'images/370_randoms/magnoliabeach.jpg'theImages[10] = 'images/370_randoms/westkirby.jpg'theImages[11] = 'images/370_randoms/yellowcabs.jpg'theImages[12] = 'images/370_randoms/karenanne.jpg'theImages[13] = 'images/370_randoms/puffinisland.jpg'theImages[14] = 'images/370_randoms/newbrighton.jpg'theImages[15] = 'images/370_randoms/wing.jpg'theImages[16] = 'images/370_randoms/frankfurt.jpg'theImages[17] = 'images/370_randoms/thurstaston.jpg'theImages[18] = 'images/370_randoms/grandcentral.jpg'theImages[19] = 'images/370_randoms/horses.jpg'theImages[20] = 'images/370_randoms/welshroad.jpg'theImages[21] = 'images/370_randoms/club.jpg'theImages[22] = 'images/370_randoms/trees.jpg'theImages[23] = 'images/370_randoms/autumnroad.jpg'theImages[24] = 'images/370_randoms/johnhancock.jpg'theImages[25] = 'images/370_randoms/chicago2.jpg'theImages[26] = 'images/370_randoms/chicago.jpg'theImages[27] = 'images/370_randoms/california.jpg'theImages[28] = 'images/370_randoms/palms.jpg'// do not edit anything below this linevar j = 0var p = theImages.length;var whichImage = Math.round(Math.random()*(p-1));function showImage(){document.write('<img src="'+theImages[whichImage]+'">');}