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





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