function navBar1 ( tableCellRef, menFlag, navStyle ) {
	if ( menFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#DAE5EF';
		}		

	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#EEEEEE';

		}
	}
}

function navBar2 ( tableCellRef, menFlag, navStyle ) {
	if ( menFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#9DABC4';

		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#5F79A3';

		}
	}
}

function navBar3 ( tableCellRef, menFlag, navStyle ) {
	if ( menFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#5F79A3';

		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#000066';

		}
	}
}








