$(function () {
    $(".friendAdd").click(function () {
        var t_id = $(this).attr("title").split(" ")[0];
        $.getJSON(
            internal_api_base+"friend/add?callback=?",
            {
                target_id : t_id, rkey : rkey
            },
            function (json) {
                if (json.status == "success")
                    alert("追加しました");
                else
                    alert("すでに登録されています");
            }
        );
    });
});
