[jQuery] Superfish: How to keep one 2nd tier menu open?

[jQuery] Superfish: How to keep one 2nd tier menu open?


Hi,
This seems like a fairly basic question that ought to have a basic
answer. I want to keep one of the 2nd tier menus open when the first
is hovered over, but I want another 2nd tier menu to remain hidden. I
tried the "current" class, but this obviously works only if you hover
over the last link of the 1st tier. Just for clarification the idea is
below. Thanks for any help!
<ul class="nav">
<li>list one
<li>item one</li>
<li>item two
<ul>*****THIS 2ND TIER STAYS OPEN WHEN 1ST TIER
OPENS******
<li>sub item one</li>
<li>sub item two</li>
</ul>
</li>
<li>item three</li>
</li>
<li>list two
<li>item one</li>
<li>item two
<ul>*****THIS 2ND TIER IS CLOSED UNTIL HOVERING
OVER ITEM TWO******
<li>sub item one</li>
<li>sub item two</li>
</ul>
</li>
<li>item three</li>
</li>
</ul>