jQuery(function() {
  jQuery(".shutter").click(function() {
    jQuery("#light-box .player iframe").attr("src", jQuery(this).attr("href"));    
    jQuery("#light-box").fadeIn();
    
    return false;
  });
  
  jQuery("#light-box").click(function() {
    jQuery(this).fadeOut('fast', function() {
      jQuery("#light-box .player iframe").attr("src", "");
    });
    
    return false;
  });
  
  jQuery(".wp-caption").click(function() {
    if(jQuery("#read-more-" + jQuery(this).attr("href")).is(":visible")) {
      jQuery("#read-more-" + jQuery(this).attr("href")).toggle('slow');
      jQuery(this).html("Read more");
    }
    else {
      jQuery("#read-more-" + jQuery(this).attr("href")).toggle('slow');
      jQuery(this).html("Read less");
    }
  
    return false;
  });
  
  jQuery("#content .page:not(#post-10) table .shutter").append("<div class='play_button'></div>");
});
