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

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

<!--     "..............................................................................." -->
images[0] = "Alive_In_Christ.jpg";
images[1] = "Jesus_=_the_Truth!.jpg";
images[2] = "Jesus_Freak.jpg";
images[3] = "Father_Knows_Best.jpg";
images[4] = "On_Fire_For_Jesus!.jpg";
images[5] = "Praise_Him!.jpg";
images[6] = "Walk_By_Faith.jpg";
images[7] = "Jesus_is_the_way.jpg";
images[8] = "Good_-_God_=_0.jpg";
images[9] = "Jesus_-_The_Final_Answer.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/banners/FCCs_Banners/FCCsa/'+[imageValue]+'">');
}

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