Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.
Yep, the menu is initialized after the page has fully loaded, which if your page contains a lot of graphics/text may appear slow. You can have the menu initialized sooner, by changing the initialization code on your page:
Code:
<script type="text/javascript">
ddlevelsmenu.setup("ddtopmenubar", "topbar") //ddlevelsmenu.setup("mainmenuid", "topbar|sidebar")
</script>
Move it from the head of your page to the very bottom of the document, and slightly modified:
Code:
<script type="text/javascript">
ddlevelsmenu.init("ddtopmenubar", "topbar") //ddlevelsmenu.init("mainmenuid", "topbar|sidebar")
</script>
Bookmarks