
<!-- 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 theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '<img src="WebAlbum/pic1.jpg" />'
theImages[1] = '<img src="WebAlbum/pic2.jpg" />'
theImages[2] = '<img src="WebAlbum/pic3.jpg" />'
theImages[3] = '<img src="WebAlbum/pic4.jpg" />'
theImages[4] = '<img src="WebAlbum/pic5.jpg" />'
theImages[5] = '<img src="WebAlbum/pic6.jpg" />'
theImages[6] = '<img src="WebAlbum/pic7.jpg" />'
theImages[7] = '<img src="WebAlbum/pic10.jpg" />'
theImages[8] = '<img src="WebAlbum/pic11.jpg" />'
theImages[9] = '<img src="WebAlbum/pic12.jpg" />'

// do not edit anything below this line

var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));
function showImageBig(){
document.write( theImages[whichImage] );
}

//  End -->
