/* -----------------------------------------------
CSS file For BALS Corporation.
FileName: treemenu.js
----------------------------------------------- */

function toggleWithClass(o,tClassName,initState) {
 var t = o.parentNode.nextSibling;
 while (t.className != tClassName) {
  t = t.nextSibling;
 }
 var s = t.style.display || initState;
 if (s != "block") {
   t.style.display = "block";
   o.title = "";
   } else {
  t.style.display = "none";
  o.title = "";
}
}