if you're using CSS you can set the z-index of the menu to a higher value than that of the content.
.menucss
{
z-index:100;
}
.pagecontent
{
z-index:1;
}
then set the cssclass of the menu control to cssclass="menucss" and the container for your swf to (i'm assuming you're using a div or a table)
<div class="pagecontent">your swf goes here</div>
or
<table class="pagecontent"><tr><td>swf goes here</td></tr></table>
------------------------------------------------
Jeff Turner (
simpleModus)
Don't forget to mark the correct answer for your
question to help out future visitors!