
function navBarMouseOver( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#ffffff';
				break;
			case 2:
				tableCellRef.style.backgroundColor = '#b0c4de';
				break;
			case 3:
				tableCellRef.style.backgroundColor = '#ffffff';
				break;
			case 4:
				tableCellRef.style.backgroundColor = '#b0c4de';
				break;
			case 5:
				tableCellRef.style.backgroundColor = '#FC9904';
				tableCellRef.style.cursor = 'hand';
				break;
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#f5f5f5';
				break;
			case 2:
				tableCellRef.style.backgroundColor = '#f5f5f5';
				break;
			case 3:
				tableCellRef.style.backgroundColor = '#deb887';
				break;
			case 4:
				tableCellRef.style.backgroundColor = '#b0c4de';
				break;
			case 5:
				tableCellRef.style.backgroundColor = '#b0c4de';
				break;
		}
	}
}
function navBarClick( tableCellRef, navStyle, url ) {
	navBarMouseOver( tableCellRef, 0, navStyle );
	window.location.href = url;
}

