// Collapsible left menu items - header text
<!-- Copyright 2005, Sandeep Gangadharan -->
<!-- For more free scripts go to http://www.sivamdesign.com/scripts/ -->
<!--
var place = 0;     // change the # 80 to adjust the placement of the menu from the top of the page. The greater
                    // number the lower will the menu be placed.
var leftSide = 5;   // change the # 0 to adjust the placement of the menu from the left-margin of the page


(document.getElementById) ? dom = true : dom = false;

function typeStart() {
 if (dom) { document.write('<div id="menuBox" style="left:' + leftSide + '; visibility:visible">') } }

function typeEnd() { if (dom) { document.write('</div>') } }

if (dom) {
 document.writeln('<style type="text/css"><!--')
 document.writeln('.links {display:none; padding-left:14px}')
 document.writeln('.links {font:Verdana,Arial,TimesNewRoman; fontsize:10;}')
 document.writeln('a.link {font:Verdana,Arial,TimesNewRoman; text-decoration: none; color: blue}')
 document.writeln('a:hover.link {font:Verdana,Arial,TimesNewRoman; text-decoration: underline; color: red}')
 document.writeln('//--></style>') }

function openClose(theID) {
 if (document.getElementById(theID).style.display == "block") {
     document.getElementById(theID).style.display = "none";
     document.getElementById("tick_"+theID).innerHTML = "+"; }
 else {
     document.getElementById(theID).style.display = "block";
     document.getElementById("tick_"+theID).innerHTML = "-"; } }

/* unused portion of left side menus - used to set vertical position when menu floats
function placeIt() {
  if (dom && !document.all) {document.getElementById("menuBox").style.top = window.pageYOffset + place}
  if (document.layers) {document.layers["menuBox1"].top = window.pageYOffset + place;
                        document.layers["menuBox1"].left = leftSide;}
  if (document.all) {document.all["menuBox"].style.top = document.body.scrollTop + place}
  window.setTimeout("placeIt()", 10); }

also need to add the following to the body tag:

<body onLoad="placeIt()" onResize="window.location.href = window.location.href">

and the text "position:absolute;" inside the typeStart function style tag

*/
// -->
