My JS drop down menu was going behind the FLV video.
I found the solution and it now work in Explorer 8, Firefox 3 and Safari 4.
The changes that I made are the following :
In the plugin PHP file : stream-video-player.php
Add 2 lines of code :
- line 120 : '<param name="wmode" value="transparent"/>'."\n".
- line 139 : $this->setParam('wmode','transparent');
In fact, we are simply adding the transparent window mode parameter.