 	//<![CDATA[    
   // When the page is ready
   $(document).ready(function(){
     $("#biocontent .morebio").hide();
     $("#bioless").hide();
     $("#biomore").show();
     
     $("#biomore")
       .prepend("<dt class='readbody'><a href='' title='Read the article'>Expand</a></dt>");
       
     $("#bioless")
       .prepend("<dt class='readbody'><a href='' title='Read the article'>Condense</a></dt>");
     
     $("#biomore dt.readbody a").click(function(){
       $(".morebio").toggle();
       $("#bioless").show();
       $("#biomore").hide();
       return false;
     });
     
     $("#bioless dt.readbody a").click(function(){
       $(".morebio").toggle();
       $("#bioless").hide();
       $("#biomore").show();
       return false;
     });
   });
 //]]>
 
