function navBar( tableCellRef, hoverFlag, navStyle ) {
if ( hoverFlag ) {
 switch ( navStyle ) {
 case 1:
 tableCellRef.style.backgroundColor = '#F4F4F4';
 break;
 default:
 }
} else {
 switch ( navStyle ) {
 case 1:
 tableCellRef.style.backgroundColor = '#FFFFFF';
 break;
 default:
}
}
}
