Well, there is nothing in the script that should affect the CSS hover state of the toggler links- they are just regular links you set up yourself on the page, for example:
Code:
<a href="javascript:animatedcollapse.toggle('jason')">Toggle Jason</a>
I don't really see how, but it's possible the JavaScript link (javascript:) used by default above may be confusing the CSS intepretator for some reason. If so, just change the above to:
Code:
<a href="#" onClick="animatedcollapse.toggle('jason');return false">Toggle Jason</a>
Bookmarks