/* clmenu.js */
/* Created on: 07/19/2006-KO */
/* Drop Down Menu first used on school_charts_st.html */
/* User needs to click to display menus and they stay displayed */
/* until clicked again to hide */
<!-- Begin
function toggleMenu(objID) {
if (!document.getElementById) return;
var ob = document.getElementById(objID).style;
ob.display = (ob.display == 'block')?'none': 'block';
}
//  End -->
