  if (document.images)
   {
     pic1on= new Image(100,25);
     pic1on.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_02a.png";  
     pic1off= new Image(100,25);
     pic1off.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_02.png";

     pic2on= new Image(100,25);
     pic2on.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_03a.png";  
     pic2off= new Image(100,25);
     pic2off.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_03.png";

     pic3on= new Image(100,25);
     pic3on.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_04a.png";  
     pic3off= new Image(100,25);
     pic3off.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_04.png";

     pic4on= new Image(100,25);
     pic4on.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_05a.png";  
     pic4off= new Image(100,25);
     pic4off.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_05.png";

     pic5on= new Image(100,25);
     pic5on.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_06a.png";  
     pic5off= new Image(100,25);
     pic5off.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_06.png";

     pic6on= new Image(100,25);
     pic6on.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_07a.png";  
     pic6off= new Image(100,25);
     pic6off.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_07.png";

     pic7on= new Image(100,25);
     pic7on.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_08a.png";  
     pic7off= new Image(100,25);
     pic7off.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_08.png";

     pic8on= new Image(100,25);
     pic8on.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_09a.png";  
     pic8off= new Image(100,25);
     pic8off.src="http://morningsundesigns.com/wp-content/themes/Morningsun V4/images/MorningsunDesigns-V4_09.png";
   }

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;
    }
 }

