$(document).ready(function()
{
  //hide the all of the elements with class moretext
  $(".moretext").hide();
  
  //show the more link for users with javascript enabled
  $(".morelesslink").show();
  
  //toggle the content to be displayed
  $(".morelesslink").click(function()
  {   
    
      if ($(this).prev(".moretext").is(":hidden"))
               {
                    $(this).html("[-] less");
                    $(this).prev(".moretext").slideToggle(600);
                    $(this).addClass("less");
                    $(this).removeClass("more");
               } else {
                   $(this).html("more [+]");
                   $(this).prev(".moretext").slideToggle(600);
                   $(this).addClass("more");
                   $(this).removeClass("less");
               }
                
  });
});
