 <!-- Hide from browsers

var isIMG = document.images;
getImages();

function getImages() {
    if (isIMG) {
      AboutOurCenteron = new Image();
      AboutOurCenteroff = new Image(); 
      AboutOurCenteroff.src = "/btc/themes/btc/images/navigation/separator1.jpg";
      AboutOurCenteron.src = "/btc/themes/btc/images/navigation/abouthover.jpg";

      PatientsFamilieson = new Image();
      PatientsFamiliesoff = new Image(); 
      PatientsFamiliesoff.src = "/btc/themes/btc/images/navigation/separator2.jpg";
      PatientsFamilieson.src = "/btc/themes/btc/images/navigation/patientsandfamilies_hover.jpg";
	  
	  
	  WaystoHelpon = new Image();
      WaystoHelpoff = new Image(); 
      WaystoHelpoff.src = "/btc/themes/btc/images/navigation/separator3.jpg";
      WaystoHelpon.src = "/btc/themes/btc/images/navigation/waystohelp_hover.jpg";
	  
	  AtDukethereisHopeon = new Image();
      AtDukethereisHopeoff = new Image(); 
      AtDukethereisHopeoff.src = "/btc/themes/btc/images/navigation/separator4.jpg";
      AtDukethereisHopeon.src = "/btc/themes/btc/images/navigation/atdukethereishope_hover.jpg";
	  
	  GeneralInformationon = new Image();
      GeneralInformationoff = new Image(); 
      GeneralInformationoff.src = "/btc/themes/btc/images/navigation/separator5.jpg";
      GeneralInformationon.src = "/btc/themes/btc/images/navigation/generalinformation_hover.jpg";
	  
	  
	  
     }
}

function img_act(imgName) {
    if (isIMG) {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
    }
}

function img_inact(imgName) {
    if (isIMG) {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
    }
}
-->