I am attempting to create a layered div using z-index, with one of the layers containing a flowplayer. Once the layer is properly created, I plan to update the div's z-index value based on the logic of the program. The following code functions correctly in Chrome but encounters issues in Firefox and IE.
Issue: In IE and Firefox, the div containing the flowplayer does not hide as expected.
<div id="dvd_supplement" style="height:200px;width:300px;">
<!-- This A tag is where your Flowplayer will be placed. It can be positioned anywhere within the div -->
<div style="z-index:11;position:relative;top:0px;">
<a id="player"
href="barsandtone.flv"
style="width:300px;height:200px"
>
</a>
</div>
<div style="z-index:2;position:relative;top:-200px;">
<img id="player_laptop_screen" src="images/laptop_screen.jpg" width="300px" height="200px"/>
</div>
<div style="z-index:3;position:relative;top:-400px;">
<img id="player_img" src="images/blank_screen.jpg" width="300px" height="200px"/>
</div>
</div>