$(function() {

  $('<div id="demo-videos">\
    <img src="images/demo-video-preview-1.jpg" width="253" height="206" alt="Demo Video Preview 1" id="demo-video-1-thumbnail" />\
    <img src="images/demo-video-preview-2.jpg" width="253" height="206" alt="Demo Video Preview 2" id="demo-video-2-thumbnail" />\
  </div>\
  <div id="video-player-box" style="display:none">\
    <div id="video-player"></div>\
  </div>').insertAfter(".blurb");

  var embedChandiesVideo = function(flvname) {
    swfobject.embedSWF(
      "flash/flvplayer.swf",
      "video-player",
      "535",
      "448", // 428 + 20 for scrubber
      "7", // only need flash 7
      "flash/expressInstall.swf",
      {
        file:flvname,
        image:"/images/demo-video-preview.jpg",
        bwfile:"/images/100k.jpg",
        bwstreams:"200,400,700,1000",
        backcolor:"0xFBC1Cf",
        frontcolor:"0x500013",
        lightcolor:"0xD04364",
        autostart:true
      },
      {
        allowfullscreen:"true"
      }
    )
  }

  $("#demo-video-1-thumbnail").click(function() {
    embedChandiesVideo("chandies.flv");
    jQuery.facebox($("#video-player-box").html());
  });  

  $("#demo-video-2-thumbnail").click(function() {
    embedChandiesVideo("chandies_2.flv");
    jQuery.facebox($("#video-player-box").html());
  });  
  
});