$(".new_friend_button").on("click", function(e){
    e.preventDefault();
    $("#new_friend_form").css("visibility", "visible").slideToggle();

  })