<!--
// browser detection
var dhtml = "";
var preload = 0;

browserName = navigator.appName; browserVer = parseInt(navigator.appVersion);
	if (browserName == "Netscape"
		&& browserVer >= 4) dhtml = "NS4";
	if (browserName == "Microsoft Internet Explorer"
		&& browserVer >= 4) dhtml = "MS4";
	if (browserName == "Netscape" && browserVer >= 3) preload = 1;
	if (dhtml == "NS4" || dhtml == "MS4") preload = 1;

// preload rollover images
if (preload) {
	b_cumberlandcounty_off = new Image(131,45);
	b_cumberlandcounty_off.src = "../../../images/b_cumberlandcounty_off.gif";
	b_ourhospitals_off = new Image(100,45);
	b_ourhospitals_off.src = "../../../images/b_ourhospitals_off.gif";
	b_mentalhealth_off = new Image(102,45);
	b_mentalhealth_off.src = "../../../images/b_mentalhealth_off.gif";
	b_addictionservices_off = new Image(127,45);
	b_addictionservices_off.src = "../../../images/b_addictionservices_off.gif";
	b_publichealth_off = new Image(107,45);
	b_publichealth_off.src = "../../../images/b_publichealth_off.gif";
	
	b_cumberlandcounty_on = new Image(131,45);
	b_cumberlandcounty_on.src = "../../../images/b_cumberlandcounty_on.gif";
	b_ourhospitals_on = new Image(100,45);
	b_ourhospitals_on.src = "../../../images/b_ourhospitals_on.gif";
	b_mentalhealth_on = new Image(102,45);
	b_mentalhealth_on.src = "../../../images/b_mentalhealth_on.gif";
	b_addictionservices_on = new Image(127,45);
	b_addictionservices_on.src = "../../../images/b_addictionservices_on.gif";
	b_publichealth_on = new Image(107,45);
	b_publichealth_on.src = "../../../images/b_publichealth_on.gif";
	
}

// function to change button image on rollover
function rollOver(imgDocName,imgObjName) {
	if (preload) {
		document [imgDocName].src = eval(imgObjName + ".src");
	}
}
//-->