﻿// JScript File

function navMouseOver(theElement)
{
   
   
  var theChosenDiv = document.getElementById(theElement);
  if(theChosenDiv == null) return;
  
 // alert(theChosenDiv.style.color);
  
    
    //start in IE.
    if (navigator.userAgent.indexOf("IE") > -1)
    {
        try
        {
            theChosenDiv.style.color = "#cecece";
         }
         catch(ex)
         {
           alert(ex.message);
         }
    }
       
    
    //start in firefox and hopefully others.
    else
    {
    
       theChosenDiv.style.color = "#cecece";   
    }

  
 //  alert(theChosenDiv);
   
}

function navMouseOut(theElement)
{
   var theChosenDiv = document.getElementById(theElement);
  if(theChosenDiv == null) return;
  
 // alert(theChosenDiv.style.color);
  
    
    //start in IE.
    if (navigator.userAgent.indexOf("IE") > -1)
    {
        try
        {
            theChosenDiv.style.color = "#000000";
         }
         catch(ex)
         {
           alert(ex.message);
         }
    }
       
    
    //start in firefox and hopefully others.
    else
    {
    
       theChosenDiv.style.color = "#000000";   
    }

   
}



