
<!--
if(document.images)     {
        pic1off = new Image();
        pic1off.src = "images/home/glossary_h_off.jpg";
        
        pic2off = new Image();
        pic2off.src = "images/home/whos_h_off.jpg";
        
        pic3off = new Image();
        pic3off.src = "images/home/series_info_off.jpg";
        
        pic4off = new Image();
        pic4off.src = "images/home/sitemap_off.jpg";
        
       
        pic1on = new Image();
        pic1on.src = "images/home/glossary_h_on.jpg";
        
        pic2on = new Image();
        pic2on.src = "images/home/whos_h_on.jpg";
        
        pic3on = new Image();
        pic3on.src = "images/home/series_info_on.jpg";
        
        pic4on = new Image();
        pic4on.src = "images/home/sitemap_on.jpg";
        
}
        
    
       
function Navon(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

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

//-->

		