I’m using your plugin on my site – http://www.chucktv.net – but must have done something wrong as the fly out menu (under Spoilers) is visible by default rather than when you mouseover Season 1. Help?
You are applying two UL’s to the same list. Try removing the following code and it’s corresponding tag and hopefully your problem will be corrected.
[code:1e9wr58w]#suckerfishnav li:hover ul ul, #suckerfishnav li:hover ul ul ul, #suckerfishnav li.sfhover ul ul, #suckerfishnav li.sfhover ul ul ul {
left:auto;
background-color:#3A4825;
}[/code:1e9wr58w]
Needs to become
[code:1e9wr58w]#suckerfishnav li:hover ul ul, #suckerfishnav li:hover ul ul ul, #suckerfishnav li.sfhover ul ul, #suckerfishnav li.sfhover ul ul ul {
left:-999em;
background-color:#3A4825;
}[/code:1e9wr58w]