// ==UserScript==
// @name          twitter with friends links 0.1
// @namespace     http://www.sailing-notes.com/
// @description   20070627
// @include       http://twitter.com*
// ==/UserScript==
(function(){
        var t = document.getElementById("timeline");
        var s = t.getElementsByTagName("strong");
        for(var i=0;i<s.length;i++){
   	    var user = s[i].getElementsByTagName("a");
            var wf = document.createElement("a");
            wf.href = user[0].href + "/with_friends";
            var str = document.createTextNode("[wf]");
            wf.appendChild(str);
            var sp = document.createTextNode(" ");
            s[i].appendChild(sp);
            s[i].appendChild(wf);
        }
})();