The easiest approach in your case is actually just to manually edit the initialization code of Accordion menu on those pages that you want a sub menu to be expanded by default, by modifying the defaultexpanded option. So on http://thegoodgirlsnyc.com/test/new/approach.php for example, you might modify the initialization code with the change in red:
Code:
ddaccordion.init({
headerclass: "headerbar", //Shared CSS class name of headers group
contentclass: "submenu", //Shared CSS class name of contents group
revealtype: "mouseover", //Reveal content when user clicks or onmouseover the header? Valid value: "click", "clickgo", or "mouseover"
mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
defaultexpanded: [1], //index of content(s) open by default [index1, index2, etc] [] denotes no content
"
"
1 here would expand the second menu header relative to the other accordion menu headers on the page, which is what you want here.
Bookmarks