The issue basically has to do with the DOM onready function the script uses. Until I can get a fix in, if you really need this to work and don't mind the extra bits, you can use jQuery to handle that task. Firstly, add the below reference just above your original menu's inside your HEAD section:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="anylinkcssmenu.css" />
Then inside anylinkcssmenu.js, replace the following function:
Code:
init:function(targetclass){
this.domready(function(){anylinkcssmenu.trueinit(targetclass)})
},
with this instead:
Code:
init:function(targetclass){
jQuery(document).ready(function($){
anylinkcssmenu.trueinit(targetclass)
})
},
Bookmarks