<!-- Begin// 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/quotes/barlowlogo3a.gif'theImages[1] = 'images/quotes/barlowlogo3b.gif'theImages[2] = 'images/quotes/barlowlogo3c.gif'theImages[3] = 'images/quotes/barlowlogo3d.gif'theImages[4] = 'images/quotes/barlowlogo3e.gif'theImages[5] = 'images/quotes/barlowlogo3f.gif'theImages[6] = 'images/quotes/barlowlogo3g.gif'theImages[7] = 'images/quotes/barlowlogo3h.gif'theImages[8] = 'images/quotes/barlowlogo3i.gif'theImages[9] = 'images/quotes/barlowlogo3j.gif'// do not edit anything below this line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('<img src="'+theImages[whichImage]+'" width="580" height="24" border="0">');}//  End -->