<!--
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!--
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!-- Begin
// Set up the image files to be used.
var theMainPicImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theMainPicImages[0] = '/_images/home_page_header.gif'
theMainPicImages[1] = '/_images/home_page_header_1.gif'
theMainPicImages[2] = '/_images/home_page_header_2.gif'
theMainPicImages[3] = '/_images/home_page_header_3.gif'

// do not edit anything below this line

var j = 0
var p = theMainPicImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theMainPicImages[i]
}
var whichMainPicImage = Math.round(Math.random()*(p-1));
function showMainPicImage(){
document.write('<img src="'+theMainPicImages[whichMainPicImage]+'" alt="Botsford Hospital">');
}

//  End -->