$(document).ready(function() {
  var id = "mediaplayer";
  
  if ($("#" + id).length == 0) return;
  
  var image_file = $("#" + id + " img").attr("src");
  
  var image_base = image_file.replace(/^.*\//, "");
  image_base = image_base.replace(/\..*/, "");
  
  image_file = "../../../" + image_file;
  var video_file = "../../video/" + image_base + ".flv";
  
  var so = new SWFObject("static/flash/mediaplayer/mediaplayer.swf", "mediaplayer_movie", "240", "200", "8.0.0.0");
  
  so.addParam("align", "middle");
  so.addParam("base", ".");
  
  so.addVariable("width", 240);
  so.addVariable("height", 200);
  so.addVariable("backcolor", "0x2b4c75");
  so.addVariable("frontcolor", "0xFFFFFF");
  so.addVariable("lightcolor", "0xbcd9ed");
  so.addVariable("screencolor", "0xdee7ed");
  so.addVariable("showdigits", false);
  so.addVariable("usefullscreen", false);
  
  so.addVariable("file", video_file);
  
  if (image_file != null) {
    so.addVariable("image", image_file);
  }
  
  so.write(id);
});
