function navMouseover(elem)
{
	//debugger;
	//alert ("elem.style = " + elem.style);
	elem.style.cssText = "color:#ffffff;" +
			"cursor:pointer;" +			
            "text-decoration:underline;"
}
function navMouseout(elem)
{
	//debugger;
	//alert ("elem.style = " + elem.style);
	elem.style.cssText = ""
}

function navSelect(strID)
{
      var elemDiv = document.getElementById(strID);
      var bOk = true;

      if (elemDiv == null || typeof(elemDiv) != "object")
      {
         alert("Unable to activate DIV ID " + strID + ". Check your HTML ID values.");
         bOk = false;
      }
      
      if (bOk)
      {
         elemDiv.style.cssText = "background-color:#e6c59a;" +
            "color:#000000;" +  
            "font-weight:bold;" +  			
			"background-repeat:no-repeat;" +
            "background-image:url(../Graphics/navHighlight.jpg);"			

		elemDiv.onmouseover = null;
		elemDiv.onmouseout = null;
      }
}