jQuery(function($) {
    $.getScript("desktopmodules/jquery/flowplayer-3.0.5.min.js", function() {
        $(".i-flvflash a[href*=.flv]")
        .each(function() {
            var $img = $('>img', this);
            if($img.size()==0) return;
            $(this).width($img.width()).height($img.height()).empty();
        })
        .flowplayer("desktopmodules/jquery/flowplayer-3.0.5.swf");
    });
});