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

  $jQuery("#whats-this").hide();

  
  $jQuery("#whats-this-link")
   .wrap("<a href='javascript:void(0);' alt='Show/hide whats-this'></a>")
   .parent()
   .click(function(e) {
     $jQuery("#whats-this").toggleVisible();
   });

});

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

  $jQuery("#transcript-copy").hide();

  
  $jQuery("#transcript-header")
   .wrap("<a href='javascript:void(0);' alt='Show/hide transcript'></a>")
   .parent()
   .click(function(e) {
     $jQuery("#transcript-copy").toggleVisible();
   });

});

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

  $jQuery("#subscribe").hide();

  
  $jQuery("#subscribe-now")
   .wrap("<a href='javascript:void(0);' alt='Show/hide subscribe options'></a>")
   .parent()
   .click(function(e) {
     $jQuery("#subscribe").toggleVisible();
   });

});

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

  $jQuery("#close")
   .wrap("<a href='javascript:void(0);' alt='Show/hide subscribe options'></a>")
   .parent()
   .click(function(e) {
     $jQuery("#subscribe").toggleVisible();
   });

});