The cookie that contains the menu's state is stored within the root directory of your domain, so the same menu across multiple pages on that domain should share the same persistent settings. Now, a sub domain is considered a different domain (ie: sub.mysite.com versus mysite.com). Also, a menu across two pages is only considered the same one by the script if they carry the same CSS class name for its main container, or the part in red below:
Code:
ddaccordion.init({
headerclass: "expandable", //Shared CSS class name of headers group that are expandable
contentclass: "categoryitems", //Shared CSS class name of contents group
revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click" or "mouseover
//etc
Bookmarks