In Firefox here the menu drops over the Flash, but the Flash doesn't pause. I'm really unclear why it should pause in IE, as there appears to be no script access to the Flash and no way for it to know that something has dropped over it. In Opera, I do see the menus dropping behind the Flash, and no pause there either.
Here's what I would try, for your embed tag add wmode="transparent" and close your param and embed tags ( />). This will probably not do anything with the pause, but should get the Flash behind the menu in those browsers where it is currently on top of it:
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="400" height="242">
<param name="movie" value="animation_02_400px.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#FFFFFF" />
<embed wmode="transparent" name="animation_02_400px" src="animation_02_400px.swf" width="400" height="242" quality="high" bgcolor="#FFFFFF" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
It might not hurt to add a param:
Code:
<param name="wmode" value="transparent" />
as sometimes the drop downs do go behind the Flash in IE.
Bookmarks