

var theImages = new Array()

theImages[0] = '/images/imagesRotating1.gif'
theImages[1] = '/images/imagesRotating2.gif'
theImages[2] = '/images/imagesRotating3.gif'
theImages[3] = '/images/imagesRotating4.gif'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage() {
	document.write('<table cellpadding=0 cellspacing=0 style="padding:0em;margin:0em;"><tr><td><img src="' + theImages[whichImage] + '" alt="LibertyHealth" NOSAVE hspace="0" vspace="0"></td></tr></table>');
}
