

function GoTo( url ) {
	window.location.href = url;
}


function NavBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#2B7D73';
				break;

			case 2:
				tableCellRef.style.backgroundColor = '#9E6228';
				break;

			case 3:
				tableCellRef.style.backgroundColor = '#C00000';
				break;

			case 4:
				tableCellRef.style.backgroundColor = '#313247';
				break;

			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#2B7D73';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#55715C';
				break;

			case 2:
				tableCellRef.style.backgroundColor = '#55715C';
				break;

			case 3:
				tableCellRef.style.backgroundColor = '#55715C';
				break;

			case 4:
				tableCellRef.style.backgroundColor = '#55715C';
				break;

			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#55715C';
				}
		}
	}
}


function NavBarClick( tableCellRef, navStyle, url ) {
	NavBar( tableCellRef, 0, navStyle );
	GoTo( url );
}

