jQuery(document).ready(function() {
 // hides the content as soon as the DOM is ready
  jQuery('#content').hide();
 
 // toggles the content on clicking the noted link  
  jQuery('#content-toggle').click(function() {
  
  var c = jQuery("#content");
  var o = (c.css('display') == 'none') ? 1 : 0;
  var t = (o==1) ? 'words -' : 'words +';
  
 
  
  jQuery('#content-toggle').text(t);
  //jquery("body *").replaceText("more +", "more -" );
  
  //jQuery('#content-toggle').replaceWith('more -');
  jQuery('#content').slideToggle(200);
  return false;
  });
});




