function navBar( tableCellRef, hoverFlag, level ) {
	if ( hoverFlag ) {
		if (level == "1") {
				tableCellRef.style.backgroundColor = '#f4f4f4';

		}



	} else {

		if (level == "1") {
				tableCellRef.style.backgroundColor = '';

		} 

	}
}


