$(document).ready(function(){

  $("#show_add").click(function(){
    $("#add").slideToggle("slow");
    return false;
  });

});