Hiya Jade,

It may be down the version of firefox use i dunno...

If my drop dowm menus hide behind the activeX on my firefox chances are it will on some other peoples firefox as well.

Anyway I have found a solution

In the HTML code for your activeX object you will have a section that opens an embed tag as seen below.

<embed
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
name="Movie4"
width="518" height="249"
src="Movie4.swf"
bgcolor="#FFFFFF"
quality="high"
swliveconnect="true"
allowscriptaccess="samedomain"

div#nav-cat ul.level1 {
/*position: absolute; */
z-index:1;
}
>
<noembed>
</noembed>
</embed>


The solution is to add the following: WMode="transparent"
after the <embed
so it now reads:

<embed
WMode="transparent"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
name="Movie4"
width="518" height="249"
src="Movie4.swf"
bgcolor="#FFFFFF"
quality="high"
swliveconnect="true"
allowscriptaccess="samedomain"

div#nav-cat ul.level1 {
/*position: absolute; */
z-index:1;
}
>
<noembed>
</noembed>
</embed>