// ==UserScript==
// @name          freshreader referer remover 0.2
// @namespace     http://www.sailing-notes.com/
// @description   20060401
// @include       http://*/feedshow*
// ==/UserScript==
(function(){
        var d = document.getElementsByTagName('div');
        for(var i in d){
          if(d[i].className=="content") {
   	    var a = d[i].getElementsByTagName('a');
            for(var j in a){
              var hr = a[j].href+"";
              if(!hr.match(/feedshow\.php/) && !hr.match(/feeddel\.php/)){
                 a[j].href = "javascript:location.replace('" + a[j].href +"');";
              }
            }
          }
        }
})();