 function imageOn(i) {
   if (document.images) {
     document.images["button" + i].src = onImgArray[i].src;
   }
 }

 function imageOff(i) {
   if (document.images) {
     document.images["button" + i].src = offImgArray[i].src;
   }
 }

