$(document).ready(function(){
    var href_string=$('#player img').attr("src");
    if (href_string != undefined) {
        var so = new SWFObject('/static/swf/mediaplayer.swf','mpl','468','400','8');
        so.addParam('allowscriptaccess','always');
        so.addParam('allowfullscreen','true');
        so.addVariable('height','400');
        so.addVariable('width','468');
        
        var href_string=$('#player img').attr("src");
        so.addVariable('file',href_string);
        
        so.addVariable('backcolor','0x0f8dc8');
        so.addVariable('frontcolor','0xEEEEEE');
        so.addVariable('lightcolor','0xFF6600');
        so.addVariable('screencolor','0Xd9eaf4');
        so.addVariable('logo','/static/images/acoverlay.png');
        
        var png_string=$('#player #video_image').attr("value");
        so.addVariable('image',png_string);
        
        so.addVariable('searchbar','false');
        so.addVariable('showstop','true');
        so.addVariable('backcolor','0x0f8dc8');
        so.addVariable('frontcolor','0xEEEEEE');
        so.addVariable('lightcolor','0x000000');
        so.addVariable('screencolor','0Xd9eaf4');
        so.write('player');
    }
});