<!-- 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 Animated Christian Banners 

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

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

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/banners/FCCs_Banners/Animated2/'+[imageValue]+'">');
}

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