
  $(document).ready(function(){
    
    $("a.more").click(function () {
       $("div.still").slideToggle("slow");
    });

  });

