//<![CDATA[    
   // When the page is ready
   
    jQuery(document).ready(function(){
      jQuery(".article .thebody").hide();
      jQuery("#container .article ul")
       .prepend("<li class='readbody'><a href='' title='Read the article'>-Pricing Chart-</a></li>");
     
      jQuery(".actions li.readbody a").click(function(event){
        jQuery(this).parents("ul").prev(".thebody").toggle();
       
       // Stop the link click from doing its normal thing
       event.preventDefault();
     });
   });
 //]]>
