

function toggleDays( dayID ) {

	var Journal = new Array( 
		'a', 'b', 'c', 
		'01', '02', '03', '04', '05', 
		'06', '07', '08', '09', '10', 
		'11', '12', '13', '14', '15', 
		'00' );
	var Days = Journal.length;
	
	for( var ctr = 0; ctr < Days; ctr++ ) {
		// alert( 'journal = ' + Journal[ ctr ] );
		if( dayID == Journal[ ctr ] ) {
			// alert( 'day = ' + Journal[ ctr ] );
			document.getElementById( 'toc'+Journal[ ctr ] ).style.display = 'none';
			document.getElementById( 'tocFOCUS'+Journal[ ctr ] ).style.display = 'block';
			document.getElementById( 'day'+Journal[ ctr ] ).style.display = 'block';
		}
		else {
			document.getElementById( 'toc'+Journal[ ctr ] ).style.display = 'block';
			document.getElementById( 'tocFOCUS'+Journal[ ctr ] ).style.display = 'none';
			document.getElementById( 'day'+Journal[ ctr ] ).style.display = 'none';
		}
	}
}

