<!--
   if (document.images) {
      bullet_on = new Image();
      bullet_on.src = "http://www.culinarysoftware.com/images/rarrow_blue.gif";

      bullet_off = new Image();
      bullet_off.src = "http://www.culinarysoftware.com/images/rarrow_yellow.gif";
   }

   function bullOn(imgName) {
      if (document.images) {
         document[imgName].src = bullet_on.src;
      }
   }

   function bullOff(imgName) {
      if (document.images) {
         document[imgName].src = bullet_off.src;
      }
   }

// -->
