    if (document.images) {

             pic1on = new Image();
             pic1on.src = "images/nav_celebrity_on.gif";
             pic2on = new Image();
             pic2on.src = "images/nav_landscape_on.gif";
             pic3on = new Image();
             pic3on.src = "images/nav_portrait_on.gif";
             pic4on = new Image();
             pic4on.src = "images/nav_nudes_on.gif";
             pic5on = new Image();
             pic5on.src = "images/nav_biography_on.gif";

             pic1off = new Image();
             pic1off.src = "images/nav_celebrity_off.gif";
             pic2off = new Image();
             pic2off.src = "images/nav_landscape_off.gif";
             pic3off = new Image();
             pic3off.src = "images/nav_portrait_off.gif";
             pic4off = new Image();
             pic4off.src = "images/nav_nudes_off.gif";
             pic5off = new Image();
             pic5off.src = "images/nav_biography_off.gif";

		  } else {
            alert("Sorry, your browser does not support image rollovers. This feature will be turned off.");
          }             


     function img_act(imgName) {
             if (document.images) {
             imgOn = eval(imgName + "on.src");
             document [imgName].src = imgOn;
             }
     }

     function img_inact(imgName) {
             if (document.images) {
             imgOff = eval(imgName + "off.src");
             document [imgName].src = imgOff;
             }
     }
