Sortable Flash Embed in FireFox

Sortable Flash Embed in FireFox


Hi all, I have a very peculiar problem that I have narrowed down to a
certain point. I would appreciate any advice on it.
ONLY in FireFox.
ONLY when using AC_FL_RunContent
When I use a sortable and drop, it refreshes the page to only show the
object I dropped. It's as if it's dropping before the document tags
and screwing up everything else. I have tried containment:parent and
that makes thing very strange.
JS:
jQuery('#charts').sortable({
    cursor:'move'
    ,axis:'y'
    ,items:'li'
    //,containment:'parent'
    //,grid:[940,270]
    ,opacity:0.7
    //,tolerance:'pointer'
    //,update:function(){}
    ,handle:'div.chart'
});
example HTML:
<ul id="charts">
<li>
<div><embed script></div>
</li>
<li>
<div><embed script></div>
</li>
</ul>