// preload all of the mouseover images:

if( doMouseovers ) {
b1off = new Image(); b1off.src = "images/interiorPalmhengeOff.gif";
b1on = new Image(); b1on.src = "images/interiorPalmhengeOn.gif";
b2off = new Image(); b2off.src = "images/interiorSongsOff.gif";
b2on = new Image(); b2on.src = "images/interiorSongsOn.gif";
b3off = new Image(); b3off.src = "images/interiorBuyOff.gif";
b3on = new Image(); b3on.src = "images/interiorBuyOn.gif";
b4off = new Image(); b4off.src = "images/interiorReviewsOff.gif";
b4on = new Image(); b4on.src = "images/interiorReviewsOn.gif";
b5off = new Image(); b5off.src = "images/interiorJohnnyOff.gif";
b5on = new Image(); b5on.src = "images/interiorJohnnyOn.gif";
b6off = new Image(); b6off.src = "images/btn_SongsOFF.gif";
b6on = new Image(); b6on.src = "images/btn_SongsON.gif";
b7off = new Image(); b7off.src = "images/btn_BuyOFF.gif";
b7on = new Image(); b7on.src = "images/btn_BuyON.gif";
b8off = new Image(); b8off.src = "images/btn_ReviewsOFF.gif";
b8on = new Image(); b8on.src = "images/btn_ReviewsON.gif";
b9off = new Image(); b9off.src = "images/btn_Johnny.gif";
b9on = new Image(); b9on.src = "images/btn_JohnnyON.gif";
}




function hiLite( imgDocID, imgObjName )
{
  if (doMouseovers) {
    document.images[imgDocID].src = imgObjName;
  }
}

function hiLiteOff( imgDocID, imgObjName )
{
  if( doMouseovers ) {
    document.images[imgDocID].src = imgObjName;
  }
}
