 	//<![CDATA[    
   // When the page is ready
   $(document).ready(function(){
     $("#bioright .thebody").hide();
     $("#dlless").hide();
     $("#dlmore").show();
     
    $("#dlmore")
       .prepend("<dt class='readbody'><a href='' title='Read the article'>Expand</a></dt>");
     $("#dlless")
       .prepend("<dt class='readbody'><a href='' title='Read the article'>Condense</a></dt>");
   
     //$("p.hpractices")
       //.prependTo("#practice_area");
     
     $("a#ctl00_interiorcontent_printthis").appendTo("li.print")
     
     $("#dlmore dt.readbody a").click(function(){
       $(".thebody").toggle();
       $("#dlmore").hide();
       $("#dlless").show();
     return false;       
       });       
       
     $("#dlless dt.readbody a").click(function(){  
       $(".thebody").toggle();
       $("#dlmore").show();
       $("#dlless").hide();
     return false;       
       });
   });
 //]]>
 
   
