//nav bar functions
function CNN_goTo( url ) {
	window.location.href = url;
}
function cnnMoney_autosNavBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#69c';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#036';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function cnnMoney_autosNavBarClick( tableCellRef, navStyle, url ) {
	cnnMoney_autosNavBar( tableCellRef, 0, navStyle );
	CNN_goTo( url );
}
