// JavaScript Document


	function navBar( tableCellRef, hoverFlag) {
	    if ( hoverFlag ) {
	        tableCellRef.style.backgroundColor = '#FCB103';
		tableCellRef.style.borderBottomColor = '#AD3D16';
		tableCellRef.style.borderLeftColor = '#FCB103';
		tableCellRef.style.borderRightColor = '#FCB103';
		tableCellRef.style.borderTopColor = '#DC4E1C';
	    } else {
	        tableCellRef.style.backgroundColor = '#CF481B';
		tableCellRef.style.borderBottomColor = '#AD3D16';
		tableCellRef.style.borderLeftColor = '#DC4E1C';
		tableCellRef.style.borderRightColor = '#AD3D16';
		tableCellRef.style.borderTopColor = '#DC4E1C';
	    }
	}
	function navClick( tableCellRef, url ) {
	    navBar( tableCellRef, 0);
	    exit=false;
	    window.location.href = url;
	}