Most of the positioning problems with the drop down menus can be solved by making sure the HTML for the drop down DIVs themselves is outside any container tag on the page other than the BODY. So in your case, try moving all the drop down DIVs to the bottom of your page, just above the "</body>" tag:
Code:
<!-- dropdown menu level 1 -->
<div id="dropmenu1_d" class="dropmenudiv_d">
<a href="litters/previous.html">Previous Litters</a>
<a href="litters/future.html">Future Litters</a>
</div>
<script type="text/javascript">
//SYNTAX: tabdropdown.init("menu_id", [integer OR "auto"])
tabdropdown.init("glowmenu", 0)
</script>
</body>
Bookmarks