<!--

  if (document.images)
   {
     pic1on= new Image(200,88);
     pic1on.src="images/arcade-on.gif";  
     pic2on= new Image(200,88);
     pic2on.src="images/redemtion-on.gif";
     pic3on= new Image(200,88);
     pic3on.src="images/lodging-on.gif"; 
     pic4on= new Image(200,88);
     pic4on.src="images/thingstodo-on.gif";  
     pic5on= new Image(200,88);
     pic5on.src="images/connect-on.gif";
     pic6on= new Image(200,88);
     pic6on.src="images/contact-on.gif";
 pic7on= new Image(200,88);
     pic7on.src="images/ABOUT-ON.gif";
pic8on= new Image(200,88);
     pic8on.src="images/directions-on.gif";
pic9on= new Image(200,88);
     pic9on.src="images/hours-on.gif";     
     
    

     pic1off= new Image(200,88);
     pic1off.src="images/arcade-off.gif";  
     pic2off= new Image(200,88);
     pic2off.src="images/redemtion-off.gif";
     pic3off= new Image(200,88);
     pic3off.src="images/lodging-off.gif"; 
     pic4off= new Image(200,88);
     pic4off.src="images/thingstodo-off.gif";  
     pic5off= new Image(200,88);
     pic5off.src="images/connect-off.gif";
     pic6off= new Image(200,88);
     pic6off.src="images/contact-off.gif"; 
pic7off= new Image(200,88);
     pic7off.src="images/ABOUT-OFF.gif";
pic8off= new Image(200,88);
     pic8off.src="images/directions-off.gif";
pic9off= new Image(200,88);
     pic9off.src="images/hours-off.gif";
        
     

 

   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

//-->

