Karl Swedberg's "Summarize" plugin: How can I get an external link to open a "summarize" box?

Karl Swedberg's "Summarize" plugin: How can I get an external link to open a "summarize" box?

My code for the summarize plugin is located here: http://jjnursingnotes.com/DEC12/jquery.summarize.js 

My page (http://jjnursingnotes.com/DEC12/ ) is a newsletter with separate articles. I would like to link to each of these articles externally from an email teaser we send out. Additionally I want the summarize box containing each article to expand automatically when its corresponding link is clicked.

I had previously used Karl Swedberg's "expander" plugin instead, and I had a solution that worked perfectly. However when I switched plugins, the solution no longer works, and I'm not sure where the difference is. 

The script in my page looks like this:

  1. <script type="text/javascript">
  2. $(document).ready(function() {

  3.   // simple example, using all default options
  4.   /***** apply the summarize() method to the "containing" element ****/
  5.   $('div.expandable').summarize(); 
  6.     
  7. });
  8. </script>

  9. <script type="text/javascript">
  10. // Redirect to Appropriate Section
  11. var urlParams = {};
  12. (function () {
  13.     var match,
  14.         pl     = /\+/g,  // Regex for replacing addition symbol with a space
  15.         search = /([^&=]+)=?([^&]*)/g,
  16.         decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
  17.         query  = window.location.search.substring(1);

  18.     while (match = search.exec(query))
  19.        urlParams[decode(match[1])] = decode(match[2]);
  20. })();

  21. $(document).ready( function(){
  22.     if ( urlParams['section'] != '' ) {

  23. $("#sect" + urlParams['section'] ).find(".read-more a").click();

  24.         $('body,html').animate({ scrollTop: $("#sect" + urlParams['section'] ).offset().top }, 500 );
  25.     }
  26. });
  27. </script>

The beginning of each article looks like this:

  1. <div class="clearfix">
  2.     <div class="expandable" id="section01">
  3.       <a name="01"></a><h1>TITLE</h1>

And the external links look like this:

  1. <a href="http://jjnursingnotes.com/DEC12?section=01" target="_blank">TITLE</a>

Please note that I am not a JS expert by any stretch; I got the original solution from StackOverflow, so I'm sure there's some piece of code here that I don't understand that's preventing this from working. Can anyone tell me what I'm doing wrong or if there is a more elegant solution?

Thanks!