There are numerous things missing on your page actually in order to get the script to work. Firstly, your anylink.css file contains erronous CSS syntax:
Code:
..anylinkcss{
position:absolute;
visibility: hidden;
border:1px solid black;
border-bottom-width: 0;
font:normal 10px Verdana;
line-height: 18px;
z-index: 100;
background-color: #ffffff;
width: 150px;
}
..anylinkcss a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
}
..anylinkcss a:hover{ /*hover background color*/
background-color: white;
color: black;
}
There shouldn't be two dots following each selector (ie: ..anylinkcss).
Moving on, your page is missing the anylinkcssmenu.init() call in the head section of your page that initializes the script, ie:
Code:
<script type="text/javascript">
//anylinkcssmenu.init("menu_anchors_class")
anylinkcssmenu.init("anchorclass")
</script>
And finally, for the anchor links you want to associate a drop down menu with, you need to insert a rel attribute inside each of the link pointing to the ID of the drop down menu DIV, ie:
Code:
<a href="http://www.dynamicdrive.com" class="anchorclass" rel="submenu1">Default Example</a>
Basically, you should look over the installation instructions again on the script page and maybe try reinstalling the script.
Bookmarks