$(function() {
  $('.video').click(function() {
    var $this = $(this);
    var src = $this.attr('href');
    var $video_popup = $('#video_popup');
    var width = 453;
    var height = 451;

    $video_popup.flash({
  		swf: src,
  		width: width,
  		height: height,
    });
    $.colorbox({
      inline:true, 
      href: '#video_popup', 
      width: width+42,
      height: height+42,
      onCleanup: function() {
        $video_popup.html('');
      },
  	  onLoad: function() {
        //$('#cboxClose').remove();
        $('#cboxContent').append('<div id="cboxSkip"><a href="javascript: $.colorbox.close();">SKIP</a></div>');
  	  }
    });
    return false;
  });
});
