/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Sandeep Gangadharan | http://www.sivamdesign.com/scripts/ */

if (document.getElementById) {
  document.write('<style type="text/css">.texter {display:none; border-left:white 20px solid; color:#404040; font: .9em century gothic, arial, helvetica; margin-bottom: 12px;}</style>') }

  var divNum = new Array("b2","c1","f1","g1","j1","h1","k1","l1","l2","m1","m3","m5","n1","p1","p2","r2","r3","s1","t1","t2","w1","w2");  
  
  // above add a1, a2 etc. for each header you wish to include
 // so if you want 4 headers you should add a1, a2, a3, a4 in the format shown
// enclosed in double quotes


function openClose(theID) {
  for(var i=0; i < divNum.length; i++) {
    if (divNum[i] == theID) {
      if (document.getElementById(divNum[i]).style.display == "block") { document.getElementById(divNum[i]).style.display = "none" }
      else {
        document.getElementById(divNum[i]).style.display = "block"
      }
  } else {
    document.getElementById(divNum[i]).style.display = "none"; }
  }
}

