> It looked like a link clicked would expand it AND the link would load.
I did not see the code on that site, but it sounds like you may be
trying this:
$("someElement).someEffect( ... );
document.location = "http://.....";
That doesn't allow the effect to finish before you navigate. Instead
try this:
$("someElement").someEffect( ... , function(){
document.location = "http:// ...";
});
That will navigate to the new page only after the effect is complete.

