
function gray_nav( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#B8B8B8';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#AEB0AD';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#C0D25A';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#AEB0AD';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#AEB0AD';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000000';
				}
		}
	}
}




function go(link)
       {
              location.href = link
       }
       
       
       
       
       
       
function dkgray_nav( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#7E8285';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#6C7379';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#C0D25A';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#6C7379';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#6C7379';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000000';
				}
		}
	}
}




function go(link)
       {
              location.href = link
       }