$(function() {

        // setup overlay actions to buttons
        $("a[rel*=flow]").overlay({

                  effect: 'apple',

                onLoad: function(content) {
                        // find the player contained inside this overlay and load it
                        this.getContent().find("a.player").flowplayer(0).load();
                },

                onClose: function(content) {
                        $f().unload();
                }
        });
        // install flowplayers
        $("a.player").flowplayer("http://releases.flowplayer.org/swf/flowplayer-3.2.2.swf");
});
