<!--
//Highlight side nav category. Show/hide 2nd level nav.
function sidenav(topic,subtopic) {
	if ( topic != '' ) {
		document.getElementById(topic).className = 'topicon';
	}	
	if ( subtopic != '' ) {
  		document.getElementById(subtopic).className = 'subtopicson';
  	}
}
-->