

if (document.images)
   {
      pic1on= new Image(95,33);
      pic1on.src="buttons/redhome.gif";
      pic1off= new Image(95,33);
      pic1off.src="buttons/home.gif";

      pic2on= new Image(95,33);
      pic2on.src="buttons/redaboutus.gif";
      pic2off= new Image(95,33);
      pic2off.src="buttons/aboutus.gif";

      pic3on= new Image(95,33);
      pic3on.src="buttons/redphotos.gif";
      pic3off= new Image(95,33);
      pic3off.src="buttons/photos.gif";

      pic4on= new Image(95,33);
      pic4on.src="buttons/redpuppies.gif";
      pic4off= new Image(95,33);
      pic4off.src="buttons/puppies.gif";

      pic5on= new Image(95,33);
      pic5on.src="buttons/redoldies.gif";
      pic5off= new Image(95,33);
      pic5off.src="buttons/oldies.gif";

      pic6on= new Image(95,33);
      pic6on.src="buttons/redlinks.gif";
      pic6off= new Image(95,33);
      pic6off.src="buttons/links.gif";
   }

function lightup(imgName,stattext)
   {
      if (document.images)
         {
            imgOn=eval(imgName + "on.src");
            document[imgName].src= imgOn;
            window.status=stattext;
          }
    }

function turnoff(imgName)
   {
      if (document.images)
         {
            imgOff=eval(imgName + "off.src");
            document[imgName].src= imgOff;
            window.status=" ";
          }
    }


