// JavaScript Document
<!-- Begin
// Set up the image files to be used.
var theImages = new Array(); // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = "_images/imgSwap/health-center-1.jpg";
theImages[1] = "_images/imgSwap/health-center-2.jpg";
theImages[2] = "_images/imgSwap/health-center-3.jpg";
theImages[3] = "_images/imgSwap/health-center-4.jpg";
theImages[4] = "_images/imgSwap/health-center-5.jpg";
theImages[5] = "_images/imgSwap/health-center-6.jpg";
theImages[6] = "_images/imgSwap/health-center-7.jpg";
theImages[7] = "_images/imgSwap/health-center-8.jpg";
theImages[8] = "_images/imgSwap/health-center-9.jpg";
theImages[9] = "_images/imgSwap/health-center-10.jpg";
theImages[10] = "_images/imgSwap/health-center-11.jpg";
// do not edit anything below this line


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(){
 var quote = String.fromCharCode(34);
document.writeln("<img src=" + quote + theImages[whichImage] + quote + " width=" + quote + "594" + quote + " height=" + quote + "159" + quote + " alt=" + quote + "Health Center" + quote + "/>");
}
//-->