$(document).ready(function(){
    
    $("#more").click(function () {
      if ($("#text_long").is(":hidden")) {
         $("#text_short").hide();
        $("#text_long").slideDown("slow");
      } else {
    
          $("#text_long").slideUp("slow");
          
          window.setTimeout('$("#text_short").show()',400);

         
       
        
      }
    });

  });
