function friends_out (id)
{
	$.ajax({
		url: "/friends/" + id,
		type: "GET",
		dataType: "html"
	});
}

