function navBar1 ( tableCellRef, menFlag, navStyle ) {
	if ( menFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#9DABC4';

		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#496569';

		}
	}
}
