menu = new Array(
"  <meta http-equiv='Content-Type' content='text/html; charset=ISO-8859-1'>",
"  <title>American Nuclear Society | University of California Berkeley Student Section</title>",
"  <link rel='stylesheet' media='all' type='text/css' href='style.css'>",
"  <link rel='shortcut icon' href='./img/favicon.ico'>",
"  <script type='text/javascript'>",
"    function startList() {",
"      if (document.all&&document.getElementById) {",
"        navRoot = document.getElementById('nav');",
"        for (i=0; i<navRoot.childNodes.length; i++) {",
"          node = navRoot.childNodes[i];",
"          if (node.nodeName=='LI') {",
"            node.onmouseover=function() {",
"              this.className+=' over';",
"            }",
"            node.onmouseout=function() {",
"              this.className=this.className.replace(' over', '');",
"            }",
"          }",
"        }",
"      }",
"    }",
"    window.onload=startList;",
"    function toggleDisplay(object) {",
"      var sibling;",
"      if (object.nodeType == 3) {",
"        sibling = object.nextSibling.nextSibling;",
"      } else {",
"        sibling = object.nextSibling;",
"      }",
"      sibling.style.display = (sibling.style.display == 'block') ? 'none' : 'block';",
"    }",
"  </script>"
)
for (i = 0; i < menu.length; i++) {
  document.write("\n" + menu[i]);
}
