      var testVar = 1;
      var loaded = true;
      if (testVar == 1) {
         oneoff = new Image(157, 21);
         oneoff.src = "http://www.studentprograms.vt.edu/images/housingreslifeb.gif";
         one = new Image(157, 21);
         one.src = "http://www.studentprograms.vt.edu/images/housingreslifeb-on.gif";
         twooff = new Image(157, 21);
         twooff.src = "http://www.studentprograms.vt.edu/images/judicialb.gif";
         two = new Image(157, 21);
         two.src = "http://www.studentprograms.vt.edu/images/judicialb-on.gif";
         threeoff = new Image(157, 22);
         threeoff.src = "http://www.studentprograms.vt.edu/images/diningb.gif";
         three = new Image(157, 22);
         three.src = "http://www.studentprograms.vt.edu/images/diningb-on.gif";
         fouroff = new Image(157, 22);
         fouroff.src = "http://www.studentprograms.vt.edu/images/fratb.gif";
         four = new Image(157, 22);
         four.src = "http://www.studentprograms.vt.edu/images/fratb-on.gif";
         fiveoff = new Image(157, 22);
         fiveoff.src = "http://www.studentprograms.vt.edu/images/publicationsb.gif";
         five = new Image(157, 22);
         five.src = "http://www.studentprograms.vt.edu/images/publicationsb-on.gif";
         sixoff = new Image(157, 23);
         sixoff.src = "http://www.studentprograms.vt.edu/images/faqb.gif";
         six = new Image(157, 23);
         six.src = "http://www.studentprograms.vt.edu/images/faqb-on.gif";
         sevenoff = new Image(157, 24);
         sevenoff.src = "http://www.studentprograms.vt.edu/images/employmentb.gif";
         seven = new Image(157, 24);
         seven.src = "http://www.studentprograms.vt.edu/images/employmentb-on.gif";
         eightoff = new Image(157, 23);
         eightoff.src = "http://www.studentprograms.vt.edu/images/vtourb.gif";
         eight = new Image(157, 23);
         eight.src = "http://www.studentprograms.vt.edu/images/vtourb-on.gif";
         nineoff = new Image(157, 21);
         nineoff.src = "http://www.studentprograms.vt.edu/images/contactb.gif";
         nine = new Image(157, 21);
         nine.src = "http://www.studentprograms.vt.edu/images/contactb-on.gif";



         function doHighlight(imgName) {
          if((testVar == 1) && (loaded)) {
            document.images[imgName].src=eval(imgName+".src");
          }
         }

         function undoHighlight(imgName) {
          if((testVar == 1) && (loaded)) {
            document.images[imgName].src=eval(imgName+"off"+".src");
          }
         }
       }