Flash showing first when using effects?

Flash showing first when using effects?

Hi,

Does anyone know how to fix the following?

I'm simply trying to show(), slideDown etc a <div> that contains a flash movie.

It all works fine apart from the fact that the flash move shows before the animation finishes?

$(document).ready(function(){
$('#demo').hide();
$('#toggleButton').click(function(){
$('#demo').toggle("slow");
});
$('#flash').flash({
src: 'content3.swf'
});
});


Any ideas, anyone?