var ImagePath = "/graphics";

function rollOver(imageName, linkID) {

   if (document.images) {
   
      publicOn = new Image();
      publicOn.src = ImagePath + "/bullet2.gif";
      privateOn = new Image();
      privateOn.src = ImagePath + "/bullet2.gif";  
      inquiryOn = new Image();
      inquiryOn.src = ImagePath + "/bullet2.gif";   
      homeOn = new Image();
      homeOn.src = ImagePath + "/bullet2.gif";      
   
      document[imageName].src = eval(imageName + "On.src");
      
      var link;
      
      if (document.all) {
         link = eval("document.all." + linkID + ".style");
         link.color = "#CCCC33";
         link.textDecoration = "underline";
         
      } else if (!document.all && document.getElementById) {
         link = document.getElementById(linkID).style;
         link.color = "#CCCC33";
         link.textDecoration = "underline";
      }

   }

}

function rollOff(imageName, linkID) {

   if (document.images) { 

      publicOff = new Image();
      publicOff.src = ImagePath + "/bullet1.gif";
      privateOff = new Image();
      privateOff.src = ImagePath + "/bullet1.gif";  
      inquiryOff = new Image();
      inquiryOff.src = ImagePath + "/bullet1.gif";   
      homeOff = new Image();
      homeOff.src = ImagePath + "/bullet1.gif";   
   
      document[imageName].src = eval(imageName + "Off.src");

      var link;
      
      if (document.all) {
         link = eval("document.all." + linkID + ".style");
         link.color = "#000066";
         link.textDecoration = "none";
      
      } else if (!document.all && document.getElementById) {
         link = document.getElementById(linkID).style;
         link.color = "#000066";
         link.textDecoration = "none";
      }

   }

}