There are a number of problems, solving the first causes others. First, you've left out the script that goes with this menu:
Code:
<script type="text/javascript">
//Nested Side Bar Menu (Mar 20th, 09)
//By Dynamic Drive: http://www.dynamicdrive.com/style/
var menuids=["sidebarmenu1"] //Enter id(s) of each Side Bar Menu's main UL, separated by commas
function initsidebarmenu(){
for (var i=0; i<menuids.length; i++){
var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
for (var t=0; t<ultags.length; t++){
ultags[t].parentNode.getElementsByTagName("a")[0].className+=" subfolderstyle"
if (ultags[t].parentNode.parentNode.id==menuids[i]) //if this is a first level submenu
ultags[t].style.left=ultags[t].parentNode.offsetWidth+"px" //dynamically position first level submenus to be width of main menu item
else //else if this is a sub level submenu (ul)
ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px" //position menu to the right of menu item that activated it
ultags[t].parentNode.onmouseover=function(){
this.getElementsByTagName("ul")[0].style.display="block"
}
ultags[t].parentNode.onmouseout=function(){
this.getElementsByTagName("ul")[0].style.display="none"
}
}
for (var t=ultags.length-1; t>-1; t--){ //loop through all sub menus again, and use "display:none" to hide menus (to prevent possible page scrollbars
ultags[t].style.visibility="visible"
ultags[t].style.display="none"
}
}
}
if (window.addEventListener)
window.addEventListener("load", initsidebarmenu, false)
else if (window.attachEvent)
window.attachEvent("onload", initsidebarmenu)
</script>
This should go as the last thing before your closing </head> tag.
The primary UL element needs this id, and the div with the id 'menucontainer' should have no id, the one with the id 'menucontainer ul' should be 'menucontainer' (addition/changes highlighted):
Code:
<!-- ============ COLUMNS SECTION ============== -->
<!-- ============ Left Column ============== --><tr>
<td class="left" align="center" width="220">
<div>
<div id="menucontainer">
<ul id="sidebarmenu1">
<li><a class="button" href="docs/residents.htm">Residents</a>
</li>
<li><a href="docs/visitors.htm">Visitors</a>
</li>
<li><a href="docs/busin . . .
Next, in your stylesheet, remove position: relative from #menucontainer:
Code:
#menucontainer {
padding: 5px 6px 5px 5px;
text-decoration: none;
list-style-type: none;
background-color: #b9b9b9;
}
Remove the margin-left from #menucontainer ul ul and set its width to 200px:
Code:
#menucontainer ul ul {
visibility: hidden;
position: absolute;
margin-top: -2em;
width: 200px;
left: 0;
z-index: 2;
}
That's pretty much it except that your tour book will be off center. So add this to the stylesheet:
Code:
#tourbookdiv {
margin: 0 auto;
}
Bookmarks