// JavaScript Document
<!-- COLLAPSIBLE MENU - II -->
<!-- Copyright 2007, Sandeep Gangadharan -->
<!-- For more free scripts go to http://www.sivamdesign.com/scripts/ -->
<!--
if (document.getElementById) {
 document.writeln('<style type="text/css">')
 document.writeln('.main {text-decoration:none; color:blue; cursor:hand; cursor:pointer}')
 document.writeln('span:hover.mainLink {text-decoration:underline; color:red}')
 document.writeln('.sublinks1 {display:none; padding-left:14px}')
 document.writeln('.link2 {text-decoration:none; color:blue}')
 document.writeln('a:hover.link2 {text-decoration:underline; color:red}')
 document.writeln('</style>') }


 var mainNum = new Array("a1","a2");
 var subNum1 = new Array("c5","c4","c3");
 var subNum2 = new Array("b12");
 function openClose(menuArray,theID) {
  for(var i=0; i < menuArray.length; i++) {
   if (menuArray[i] == theID) {
    if (document.getElementById(theID).style.display == "block") {
           document.getElementById(theID).style.display = "none";
           document.getElementById("tick_"+menuArray[i]).innerHTML = "+"; }
    else { document.getElementById(theID).style.display = "block";
           document.getElementById("tick_"+menuArray[i]).innerHTML = "-";
    }
   }
   else { document.getElementById(menuArray[i]).style.display = "none";
          document.getElementById("tick_"+menuArray[i]).innerHTML = "+"; }
  }
 }
 // -->
