//<![CDATA[  
// When the page is ready  
$(document).ready(function(){  
$(".article .thebody").hide();  
var readMe="READ MORE";
var hideMe="HIDE";

$("#container .article ul")  
.prepend("<li class='readbody'><a href='' title='Read the article' id='readHide'>"+readMe+"</a></li>");  
  
$(".actions li.readbody a").click(function(event){  
$(this).parents("ul").prev(".thebody").toggle();  

if ($('a#readHide').text()==readMe) {
$('a#readHide').text(hideMe);
}
else {
$('a#readHide').text(readMe);
}
  
// Stop the link click from doing its normal thing  
return false;  
});  
});  
//]]>
