Flash SWF movie bleeds into an element covering it

Embedded Flash movies do not always obey element order and z-index.

To fix this, set the wmode attribute to transparent in both <object> and <embed> tags:

<object ... >
  <param name="wmode" value="transparent" />
  <embed ... wmode="transparent" />
</object>
Henning Koch