OK, it looks like the code for the overlay has been updated from what I posted earlier:
I put the javascript below in a separate js file named video.js so you should have this in your HTML page <head> section:
Make sure all the paths are correct.
<script src="http://cdn.jquerytools.org/1.1.2/full/jquery.tools.min.js"></script>
<script src="js/video.js"></script>
$(function() {
// setup overlay actions to a href
$("a[rel]").overlay({
// use the Apple effect for overlay
effect: 'apple',
expose: '#789',
onLoad: function(content) {
// find the player contained inside this overlay and load it
this.getOverlay().find("a.player").flowplayer(0).load();
},
onClose: function(content) {
$f().unload();
}
});
// install flowplayers
$("a.player").flowplayer("/swf/flowplayer-3.1.4.swf");
});
Then in the HTML body section:
<a rel="#overlay1" href="#" ><img src="img/video.gif" height="145" width="107" alt="" border="0" /></a>
<!-- overlays for videos -->
<div class="overlay" id="overlay1">
<a class="player" href="1AnalyzerCartridge.flv">
nbsp; (don't forget the non-breaking space here, the & doesn't show up)
</a>
</div>
And then don't forget also to tweak your CSS. Make sure that your ids correspond, i.e. the id of the div is "overlay1" with a class of "overlay". If you wanted to have multiple players, you would create a new div with id "overlay2", and reference it with a rel="#overlay2", etc.
If you're still having problems, let me know and I'll throw up a simple page for you.