<!-- Copyright 2005, Sandeep Gangadharan -->
<!-- For more free scripts go to http://www.sivamdesign.com/scripts/ -->
<!--
var place = 80;     // 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 = 0;   // 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="position:absolute; left:' + leftSide + 'px; visibility:visible">') } }

function typeEnd() { if (dom) { document.write('</div>') } }

function placeIt() {
  if (dom && !document.all) {document.getElementById("menuBox").style.top = window.pageYOffset + place + "px";}
  if (document.all) {document.all["menuBox"].style.top = document.documentElement.scrollTop + place + "px"}
  window.setTimeout("placeIt()", 10); }

if (dom) {
 document.writeln('<style type="text/css"><!--')
 document.writeln('.links {display:none; padding-left:28px}')
 document.writeln('a.link {text-decoration: none; color: black}')
 document.writeln('a:hover.link {text-decoration: none; color: blue}')
 document.writeln('a:hover.visited {text-decoration: none; color: black}')
 document.writeln('//--></style>') }

function openClose(theID) {
 if (document.getElementById(theID).style.display == "block") {
     document.getElementById(theID).style.display = "block";// Initially "none" instead of "block", to hide sub-menu
     document.getElementById("tick_"+theID).innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-"; }// Initially + instead of -
 else {
     document.getElementById(theID).style.display = "block";
     document.getElementById("tick_"+theID).innerHTML = "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-"; } }
// -->