/** navigationFuncs.js
    Programmer:     Alfred K Chan
    Initial draft:  7/14/2005
    This file has functions that deal with the navigation.  Precisely, it handles the visual aspect
    of navigation table.
*/


/** change the style as the object is onmouseover */
function titleOnMouseOver(anObject, targetColor){
   //anObject.style.color = "white";
   anObject.style.backgroundColor = targetColor;
}

/** change the style as the object is onmouseout */
function titleOnMouseOut(anObject, targetColor){
   anObject.style.color = "black";
   anObject.style.backgroundColor = targetColor;
}