    if (document.images) {
      aboutuson = new Image();
      aboutuson.src = "aboutuson.jpg";
      aboutusoff = new Image();
      aboutusoff.src = "aboutus.jpg";

      contactuson = new Image();
      contactuson.src = "contactuson.jpg";
      contactusoff = new Image();
      contactusoff.src = "contactus.jpg";

      beefon = new Image();
      beefon.src = "beefon.jpg";
      beefoff = new Image();
      beefoff.src = "beef.jpg";

      breedingstockon = new Image();
      breedingstockon.src = "breedingstockon.jpg";
      breedingstockoff = new Image();
      breedingstockoff.src = "breedingstock.jpg";

      giftshopon = new Image();
      giftshopon.src = "giftshopon.jpg";
      giftshopoff = new Image();
      giftshopoff.src = "giftshop.jpg";

      imglinkson = new Image();
      imglinkson.src = "linkson.jpg";
      imglinksoff = new Image();
      imglinksoff.src = "links.jpg";
    }
    
    function turnOn(imageName) {
        if (document.images) {
            document[imageName].src = eval(imageName + "on.src");
        }
    }
    
    function turnOff(imageName) {
        if (document.images) {
            document[imageName].src = eval(imageName + "off.src");
        }
    }

