
// preload all of the mouseover images:

if( doMouseovers ) {
b1off = new Image(); b1off.src = "/images/AboutNCSHPO_Off.gif";
b1on = new Image(); b1on.src = "/images/AboutNCSHPO_On.gif";
b2off = new Image(); b2off.src = "/images/StateInfoList_Off.gif";
b2on = new Image(); b2on.src = "/images/StateInfoList_On.gif";
b3off = new Image(); b3off.src = "/images/NewsEvents_Off.gif";
b3on = new Image(); b3on.src = "/images/NewsEvents_On.gif";
b4off = new Image(); b4off.src = "/images/MeetingInfo_Off.gif";
b4on = new Image(); b4on.src = "/images/MeetingInfo_On.gif";
b5off = new Image(); b5off.src = "/images/HPFPreservation_Off.gif";
b5on = new Image(); b5on.src = "/images/HPFPreservation_On.gif";
b6off = new Image(); b6off.src = "/images/StatesPreservation_Off.gif";
b6on = new Image(); b6on.src = "/images/StatesPreservation_On.gif";
b7off = new Image(); b7off.src = "/images/PreservationPartners_Off.gif";
b7on = new Image(); b7on.src = "/images/PreservationPartners_On.gif";
b8off = new Image(); b8off.src = "/images/MembersOnly_Off.gif";
b8on = new Image(); b8on.src = "/images/MembersOnly_On.gif";
}

function hiLite( imgDocID, imgObjName )
{
  if (doMouseovers) {
    document.images[imgDocID].src = imgObjName;
  }
}

function hiLiteOff( imgDocID, imgObjName )
{
  if( doMouseovers ) {
    document.images[imgDocID].src = imgObjName;
  }
}

