<!-- 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] = 'images/photo/1.jpg'
theImages[1] = 'images/photo/2.jpg'
theImages[2] = 'images/photo/3.jpg'
theImages[3] = 'images/photo/4.jpg'
theImages[4] = 'images/photo/5.jpg'
theImages[5] = 'images/photo/6.jpg'
theImages[6] = 'images/photo/7.jpg'
theImages[7] = 'images/photo/8.jpg'
theImages[8] = 'images/photo/9.jpg'
theImages[9] = 'images/photo/10.jpg'
theImages[10] = 'images/photo/11.jpg'
theImages[11] = 'images/photo/12.jpg'
theImages[12] = 'images/photo/13.jpg'
theImages[13] = 'images/photo/14.jpg'
theImages[14] = 'images/photo/15.jpg'
theImages[15] = 'images/photo/16.jpg'
theImages[16] = 'images/photo/17.jpg'
theImages[17] = 'images/photo/18.jpg'
theImages[18] = 'images/photo/19.jpg'
theImages[19] = 'images/photo/20.jpg'
theImages[20] = 'images/photo/21.jpg'
theImages[21] = 'images/photo/22.jpg'
theImages[22] = 'images/photo/23.jpg'
theImages[23] = 'images/photo/24.jpg'
theImages[24] = 'images/photo/25.jpg'

// do not edit anything below this line


function showImage1(){
	var j = 0;
    var p = 5;
    var whichImage = Math.round(Math.random()*(p-1));
    document.write('<img src="'+theImages[whichImage]+'" width="100" height="75" alt="" class="photoline">');
}

function showImage2(){
	var j = 0
    var p = 5;
    var whichImage = Math.round(Math.random()*(p-1))+5;
    document.write('<img src="'+theImages[whichImage]+'" width="100" height="75" alt="" class="photoline">');
}

function showImage3(){
	var j = 0
    var p = 5;
    var whichImage = Math.round(Math.random()*(p-1))+10;
    document.write('<img src="'+theImages[whichImage]+'" width="100" height="75" alt="" class="photoline">');
}

function showImage4(){
	var j = 0
    var p = 5;
    var whichImage = Math.round(Math.random()*(p-1))+15;
    document.write('<img src="'+theImages[whichImage]+'" width="100" height="75" alt="" class="photoline">');
}

function showImage5(){
	var j = 0
    var p = 5;
    var whichImage = Math.round(Math.random()*(p-1))+20;
    document.write('<img src="'+theImages[whichImage]+'" width="100" height="75" alt="" class="photoline">');
}
//  End -->
