<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin

// Array for the random images.
var imgArray = new Array() // do not change this

imgArray[0] = 'img/home/rotating1.jpg'; 
imgArray[1] = 'img/home/rotating2.jpg'; 
imgArray[2] = 'img/home/rotating3.jpg'; 
// To add more image files, continue with the
// pattern above, adding to the array.

// do not edit anything below this line
var j = 0
var p = imgArray.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = imgArray[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+imgArray[whichImage]+'" border="0">');
}

//  End -->

