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