<!-- Marshall Bowling -->
<!-- Web Site: http://www.marshallbowling.com -->

<!-- This script calculates a random number between the high and low limits -->
<!-- specified in the variables. It will then display the image from the    -->
<!-- array value or randomNum.

<!-- Begin Onload Christian Internet Bumper Sticker 

var images = new Array();
var lowLimit = 0;
var highLimit = 9;

<!--     "..............................................................................." -->
images[0] = "1.jpg";
images[1] = "2.jpg";
images[2] = "3.jpg";
images[3] = "4.jpg";
images[4] = "5.jpg";
images[5] = "6.jpg";
images[6] = "7.jpg";
images[7] = "8.jpg";
images[8] = "9.jpg";
images[9] = "10.jpg";
<!--     "..............................................................................." -->

function chooseImage(){
    randomNum = Math.floor (Math.random() * highLimit) + lowLimit
    imageValue = images[randomNum]
}

function writeImage() { 
    document.write('<a href="http://freechristiancontent.org"><img src="http://www.freechristiancontent.org/Stereograms/'+[imageValue]+'">');
}

chooseImage();
writeImage();
 
// -- End Onload Christian Internet Bumper Sticker -->

