  function changeColors()
   {
      	
//This routine changes the colors of the JanNell Text section onMouseOver
      var JNT=document.getElementById("JanNellText");      
      var BGC=JNT.style.backgroundColor;
      //alert(BGC);   
      var FGC=JNT.style.color;
    
      JNT.style.backgroundColor="yellow";
      JNT.style.color="#990033";
    }
    
 function changeBack()
    {  
  //alert("I'm here");
      //This routine changes the colors of the JanNell Text section onMouseOver
      var JNT=document.getElementById("JanNellText");      
      var BGC=JNT.style.backgroundColor;
      var FGC=JNT.style.color;
      ///alert(BGC);      
      //alert(FGC);
JNT.style.backgroundColor=FGC;
      JNT.style.color=BGC;
    }
   
