Hello,
I have multiple instances of the video player on a single page, that works perfectly fine in every other browser but IE. I'm not exactly sure what the issue is, the page is below:
http://heidmusic.com/Heid-Education/appleton.html
code sample of each video:
<div class="jwbox">
<img class="videolink" width="54" height="26" alt="Play Video" title="Play Video" src="img/instructors/icon-video.jpg"/>
<div class="jwbox_hidden">
<div class="jwbox_content">
<object width="320" height="240" type="application/x-shockwave-flash" id="ply" name="ply" data="player.swf"><param name="allowfullscreen" value="true"/><param name="allowscriptaccess" value="always"/><param name="flashvars" value="file=video-appleton/jbusse.flv"/></object>
</div>
</div>
</div>
I appreciate any help to try and resolve this IE issue. I'm not really sure where to start.

Tried using a different embed method, which is working in IE, but the jwbox effect is not, it just kicks the other content over, and displays the video on the page... Any thoughts? 2nd teach under guitar:
http://heidmusic.com/Heid-Education/green-bay.html
<div class="jwbox">
<img class="videolink" width="54" height="26" alt="Play Video" title="Play Video" src="img/instructors/icon-video.jpg"/>
<div class="jwbox_hidden">
<div class="jwbox_content">
<embed
flashvars="file=video-greenbay/jcheslock.flv&autostart=true"
allowfullscreen="true"
allowscripaccess="always"
id="jcheslock"
name="jcheslock"
src="player.swf"
/>
</div>
</div>
</div>