  // Hide captions on page load
  $(document).ready(function() {
    $('p.wp-caption-text').hide();
   
   /* Clicking 'captions' button toggles showing or hiding captions */
   
      $('#captions-link').click(function(){
	    if ($("p.wp-caption-text").is (":hidden")) {
	      $('p.wp-caption-text').fadeIn('slow');
        } else {
          $('p.wp-caption-text').fadeOut('slow');	
        }		  
    });
  });
