$( document ).ready ( 
  function() {
	$( 'p[title="main"]' ).before( '<p class="body_text2"><a class="trigger2" href="#">Hide story</a></p>' );
    $( 'p[title="notmain"]' ).before( '<p class="body_text2"><a class="trigger" href="#">Show story</a></p>' );
    $( 'p[title="notmain"]' ).hide();
    $('a.trigger').toggle ( 
      function() {
        $(this).html('Hide story');
        $(this.parentNode.nextSibling).slideDown('slow');
      },
      function() {
        $(this).html('Show story');
        $(this.parentNode.nextSibling).slideUp('slow');
      }
    )
	  $('a.trigger2').toggle ( 
      function() {
        $(this).html('Show story');
        $(this.parentNode.nextSibling).slideUp('slow');
      },
      function() {
        $(this).html('Hide story');
        $(this.parentNode.nextSibling).slideDown('slow');
      }
    )
  }
)
	
	

