
function HCCBGG_nav( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
//	kleur voor navcel onmouseover
				tableCellRef.style.backgroundColor = '#FFFFFF';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#ccc';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#CC0000';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
//	kleur voor navcel onmouseout			
				tableCellRef.style.backgroundColor = '#DDDDDD';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#ddd';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000000';
				}
		}
	}
}

function HCCBGG_nav2( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
//	kleur voor navcel onmouseover
				tableCellRef.style.backgroundColor = '#ffff66';

		}
	} else {
		switch ( navStyle ) {
			case 1:
//	kleur voor navcel onmouseout			
				tableCellRef.style.backgroundColor = '#ff9900';

		}
	}
}

function HCCBGG_alv( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
//	kleur voor navcel onmouseover
				tableCellRef.style.backgroundColor = '#990099';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#ccc';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000000';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
//	kleur voor navcel onmouseout			
				tableCellRef.style.backgroundColor = '#CC3399';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#ddd';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000000';
				}
		}
	}
}