$(document).ready(function(){
   $(".more").click(function(){
       $(this).next().toggle("normal");
       return false;
   });

   $(".more").click().toggle(
        function(){$(this).text(" [-] ")},
        function(){$(this).text(" [+] ")}
   )

   //hide the introtext initially
   $(".introtext").hide();
});
