Try also disabling hiding the drop down menu automatically onMouseout, by removing the code in red inside the .js file:
Code:
this.addEvent([menu.anchorobj, menu.dropmenu, menu.shadow], function(e){ //MOUSEOUT event for anchor, dropmenu, shadow
Then, if you need a way to manually hide the menu (via a link for example), you'd use something like:
Code:
<a href="javascript:anylinkcssmenu.hidemenu(document.getElementById('submenu3')._internalID)">hide menu</a>
where "submenu3" is the HTML attribute ID of the drop down menu you wish to hide.
Bookmarks