$(document).ready(function(){
  
  $("a.open").click(function(){
    
    id = $(this).attr("data-video");
    
    $("#"+id).css("display", "block");
    
    $('#cboxWrapper').css('background','transparent');

    if(id == "video2011"){
      var player = new MediaElementPlayer('video.'+id);
    }
    else{
      var player = new MediaElementPlayer('video.'+id, {mode:'shim'});
    }
    
    $.colorbox({transition: 'none', inline:true, href:"#"+id, escKey: false, onCleanup:function(){
      player.pause();
      $("#"+id).css("display", "none");
    }});
    
    return false;
  });
  
});

