<!-- This script and many more are available free online at --><!-- The JavaScript Source!! http://javascript.internet.com --><!-- Begin// Set up the image files to be used.var theImagesLeft = new Array() // do not change this// To add more image files, continue with the// pattern below, adding to the array.theImagesLeft[0] = 'graphics/randomimages/left/left1.gif'theImagesLeft[1] = 'graphics/randomimages/left/left2.gif'theImagesLeft[2] = 'graphics/randomimages/left/left3.gif'theImagesLeft[3] = 'graphics/randomimages/left/left4.gif'// do not edit anything below this linevar k = 0var m = theImagesLeft.length;var preBufferLeft = new Array()for (n = 0; n < m; n++){   preBufferLeft[n] = new Image()   preBufferLeft[n].src = theImagesLeft[n]}var whichImageLeft = Math.round(Math.random()*(m-1));function showImageLeft(){document.write('<img src="'+theImagesLeft[whichImageLeft]+'" width="168" height="70" border="0" />');}// 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] = 'graphics/randomimages/center/center1.gif'theImages[1] = 'graphics/randomimages/center/center2.gif'theImages[2] = 'graphics/randomimages/center/center3.gif'theImages[3] = 'graphics/randomimages/center/center4.gif'theImages[4] = 'graphics/randomimages/center/center5.gif'theImages[5] = 'graphics/randomimages/center/center6.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="316" height="70" border="0" />');}// Set up the image files to be used.var theImagesRight = new Array() // do not change this// To add more image files, continue with the// pattern below, adding to the array.theImagesRight[0] = 'graphics/randomimages/right/right1.gif'theImagesRight[1] = 'graphics/randomimages/right/right2.gif'theImagesRight[2] = 'graphics/randomimages/right/right3.gif'theImagesRight[3] = 'graphics/randomimages/right/right4.gif'theImagesRight[4] = 'graphics/randomimages/right/right5.gif'// do not edit anything below this linevar h = 0var q = theImagesRight.length;var preBufferRight = new Array()for (z = 0; z < q; z++){   preBufferRight[z] = new Image()   preBufferRight[z].src = theImagesRight[z]}var whichImageRight = Math.round(Math.random()*(q-1));function showImageRight(){document.write('<img src="'+theImagesRight[whichImageRight]+'" width="234" height="70" border="0" />');}//  End -->