//<!--
if (document.images) {
   var oneof = new Image();
   oneof.src = "images/01n_off.png";
   var oneon = new Image();
   oneon.src = "images/01n_on.png";
   
   var twoof = new Image();
   twoof.src = "images/02n_off.png";
   var twoon = new Image();
   twoon.src = "images/02n_on.png";
   
   var threeof = new Image();
   threeof.src = "images/03n_off.png";
   var threeon = new Image();
   threeon.src = "images/03n_on.png";
   
   var fourof = new Image();
   fourof.src = "images/04n_off.png";
   var fouron = new Image();
   fouron.src = "images/04n_on.png";
   
   var fiveof = new Image();
   fiveof.src = "images/05_off.png";
   var fiveon = new Image();
   fiveon.src = "images/05_on.png";
   
   var sixof = new Image();
   sixof.src = "images/06_off.png";
   var sixon = new Image();
   sixon.src = "images/06_on.png";
   
   var sevenof = new Image();
   sevenof.src = "images/07_off.png";
   var sevenon = new Image();
   sevenon.src = "images/07_on.png";
   
}
function act(imgName) {
   if (document.images) 
      document[imgName].src = eval(imgName + 'on.src');
}
function inact(imgName) {
if (document.images)
document[imgName].src = eval(imgName + 'of.src');
}
// -->
