<!-- This script sets the initial image -->
<!-- This script and many more are available free online at --><!-- The JavaScript Source!! http://javascript.internet.com --><!-- Beginvar theImages = new Array()
theImages[0] = 'projects/100/01.jpg'theImages[1] = 'projects/101/02.jpg'theImages[2] = 'projects/101/05.jpg'theImages[3] = 'projects/101/04.jpg'theImages[4] = 'projects/103/06.jpg'theImages[5] = 'projects/101/10.jpg'theImages[6] = 'projects/108/01.jpg'theImages[7] = 'projects/109/06.jpg'theImages[8] = 'projects/109/11.jpg'
theImages[9] = 'projects/113/02.jpg'theImages[10] = 'projects/126/01.jpg'theImages[11] = 'projects/129/01.jpg'
theImages[12] = 'projects/131/02.jpg'
theImages[13] = 'projects/134/01.jpg'
theImages[14] = 'projects/136/01.jpg'
theImages[15] = 'projects/142/24.jpg'

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]+'">');}//  End -->