jQuery(document).ready(function($){

  //$(".lyrics-link").click(function () { 
  //  alert($(this).attr('href'));
  //});

  $(".lyrics-link").colorbox({
    inline:true, 
    href:$(this).attr('href'), 
    width:"400px", 
    height:"420px", 
    scrolling: false, 
    onOpen:function(){
      $("object").hide();
    },
    onCleanup:function(){
      $("object").show();
    },
    title:false
  });

  $(".video-link").colorbox({
    iframe:true, 
    innerWidth:425, 
    innerHeight:344, 
    onOpen:function(){
      $("object").hide();
    },
    onCleanup:function(){
      $("object").show();
    }
  });

});

