can you load swfobject.js or jquery.swfobject in the footer, below the div being replaced?
I'd love to keep all of my javascript loading at the bottom of the page but swfobject seems to fail if it isn't loaded before any divs to be replaced.
bare bones example:
<div id="flash"></div>
<div id="footer">
<script src="/static/default/default/js/jquery-1.3.2.min.js"></script>
<script src="/static/default/default/js/jquery.swfobject.1-0-9.min.js"></script>
<script type="text/javascript">
$(document).ready(
function () {
$('#flash').flash({ swf: 'test.swf' });
});
</script>
</div>