 
<!-- 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 theImagesLeft = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
 
theImagesLeft[0] = '/images/headerpics/c1.jpg'
theImagesLeft[1] = '/images/headerpics/c2.jpg'
theImagesLeft[2] = '/images/headerpics/c3.jpg'
theImagesLeft[3] = '/images/headerpics/c4.jpg'
theImagesLeft[4] = '/images/headerpics/m6.jpg'
theImagesLeft[5] = '/images/headerpics/m7.jpg'
theImagesLeft[6] = '/images/headerpics/m8.jpg'
theImagesLeft[7] = '/images/headerpics/m9.jpg'
 
// do not edit anything below this line
 
var j = 0
var p = theImagesLeft.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesLeft[i]
}
var whichImageLeft = Math.round(Math.random()*(p-1));
function showImageLeft(){
document.write('<img src="http://www.davidcrane.net/'+theImagesLeft[whichImageLeft]+'" alt="Christian Muslim Forum">');
}
 
//  End --> 

 
<!-- 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 theImagesRight = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
 
theImagesRight[0] = '/images/headerpics/m1.jpg'
theImagesRight[1] = '/images/headerpics/m2.jpg'
theImagesRight[2] = '/images/headerpics/m3.jpg'
theImagesRight[3] = '/images/headerpics/m4.jpg'
theImagesRight[4] = '/images/headerpics/m5.jpg'
theImagesRight[5] = '/images/headerpics/b1.jpg'
theImagesRight[6] = '/images/headerpics/b2.jpg'
theImagesRight[7] = '/images/headerpics/b3.jpg'
// do not edit anything below this line
 
var j = 0
var p = theImagesRight.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesRight[i]
}
var whichImageRight = Math.round(Math.random()*(p-1));
function showImageRight(){
document.write('<img src="http://www.davidcrane.net/'+theImagesRight[whichImageRight]+'" alt="Christian Muslim Forum">');
}
 
//  End --> 

