<!-- //engage cloaking device

// declare rollover graphics
theprostate_on = new Image(108,31);
theprostate_on.src = "images/navbuttons/theprostate_on.gif";
theprostate_off = new Image(108,31);
theprostate_off.src = "images/navbuttons/theprostate_off.gif";
theprostate_txt = "The Prostate [Link to the Prostate section]";

whatis_on = new Image(193,31);
whatis_on.src = "images/navbuttons/whatis_on.gif";
whatis_off = new Image(193,31);
whatis_off.src = "images/navbuttons/whatis_off.gif";
whatis_txt = "What is Prostate Cancer? [Link to What is Prostate Cancer? section]";

treatments_on = new Image(100,31);
treatments_on.src = "images/navbuttons/treatments_on.gif";
treatments_off = new Image(100,31);
treatments_off.src = "images/navbuttons/treatments_off.gif";
treatments_txt = "Treatments [Link to the Treatments section]";

coping_on = new Image(66,31);
coping_on.src = "images/navbuttons/coping_on.gif";
coping_off = new Image(66,31);
coping_off.src = "images/navbuttons/coping_off.gif";
coping_txt = "Coping [Link to the Coping section]";

aboutus_on = new Image(88,31);
aboutus_on.src = "images/navbuttons/aboutus_on.gif";
aboutus_off = new Image(88,31);
aboutus_off.src = "images/navbuttons/aboutus_off.gif";
aboutus_txt = "About Us [Link to the About Us section";

appointment_on = new Image(170,31);
appointment_on.src = "images/navbuttons/appointment_on.gif";
appointment_off = new Image(170,31);
appointment_off.src = "images/navbuttons/appointment_off.gif";
appointment_txt = "Make an Appointment [Link to the make an Appointment section]";

function rollover(imgName){
	document[imgName].src = eval(imgName+"_on.src"); 
	window.status=eval(imgName+"_txt");
}

function rolloff(imgName){
	document[imgName].src = eval(imgName + "_off.src");
	window.status="";
}

// disengage -->