$(function(){

  embedVideo();

  // $(window).resize(function(e){
  //   embedVideo();
  // });

  function embedVideo() {
    if ($('#mediaspace').length == 0) {
      $("<div id='mediaspace' style='width:100%; height:100%'></div>").prependTo("#wrapper");
    }
    var width = $(window).width();
    var height = Math.round(width * 720/1280);
    // var so = new SWFObject('/flash/licensed.swf','mpl',width,height,'9');
    var so = new SWFObject('/flash/licensed.swf','mpl','100%','100%','9');
    so.addParam('allowfullscreen','true');
    so.addParam('allowscriptaccess','never');
    so.addParam('wmode','transparent');
    so.addVariable('file','planet_heritage_fade_2000.flv');
    so.addVariable('streamer','rtmp://s2seua0wz70hav.cloudfront.net/cfx/st');
    so.addVariable('controlbar','none');
    so.addVariable('autostart','true');
    so.addVariable('repeat','always');
    so.write('mediaspace');
  }
});

