Try moving the drop down DIV itself (plus the activating script call) so it's outisde any container tags other than the <body> itself, such as directly above the </body> tag:
Code:
<div id="menu_child" style="position: absolute; visibility: hidden;">
<a class="menu" href="glass.htm">Glass</a>
<a class="menu" href="metal.htm">Metal</a>
<a class="menu" href="stone.htm">Stone</a>
<a class="menu" href="medal.htm">Medallions</a>
<a class="menu" href="rails.htm">Rails</a>
<a class="menu" href="liner.htm">Liners</a>
</div>
<script type="text/javascript">
at_attach("menu_parent", "menu_child", "hover", "y", "pointer");
</script>
</body>
Bookmarks