<!--

  if (document.images)
   {
     pic1on= new Image(100,25);
     pic1on.src="./images/b_home_off.png";  
	 pic2on= new Image(100,25);
     pic2on.src="./images/b_info_off.png";
	 pic3on= new Image(100,25);
     pic3on.src="./images/b_happy_off.png";
	 pic6on= new Image(100,25);
     pic6on.src="./images/b_news_off.png";
	 pic7on= new Image(100,25);
     pic7on.src="./images/b_shop_off.png";
	 pic8on= new Image(100,25);
     pic8on.src="./images/b_links_off.png";
	 pic9on= new Image(100,25);
     pic9on.src="./images/b_story_off.png"; 
	 pic10on= new Image(100,25);
     pic10on.src="./images/b_lost_off.png";
	 pic11on= new Image(100,25);
     pic11on.src="./images/b_help_off.png"; 
	 pic12on= new Image(100,25);
     pic12on.src="./images/tv_off.png"; 
	 pic13on= new Image(100,25);
     pic13on.src="./images/b_pet_shop_off.png"; 
	   
     pic1off= new Image(100,25);
     pic1off.src="./images/b_home_on.png";
	 pic2off= new Image(100,25);
     pic2off.src="./images/b_info_on.png";
	 pic3off= new Image(100,25);
     pic3off.src="./images/b_happy_on.png";
	 pic6off= new Image(100,25);
     pic6off.src="./images/b_news_on.png";
	 pic7off= new Image(100,25);
     pic7off.src="./images/b_shop_on.png";
	 pic8off= new Image(100,25);
     pic8off.src="./images/b_links_on.png";
	 pic9off= new Image(100,25);
     pic9off.src="./images/b_story_on.png";
	 pic10off= new Image(100,25);
     pic10off.src="./images/b_lost_on.png";
	 pic11off= new Image(100,25);
     pic11off.src="./images/b_help_on.png";
	 pic12off= new Image(100,25);
     pic12off.src="./images/tv_on.png";
	 pic13off= new Image(100,25);
     pic13off.src="./images/b_pet_shop_on.png";
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgon=eval(imgName + "on.src");
      document[imgName].src= imgon;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgon=eval(imgName + "off.src");
      document[imgName].src= imgon;
    }
 }

//-->


