jQuery(document).ready(function(){
    jQuery("a.goto").each(function(){
      jQuery(this).attr("href"
          ,"http://" + window.location.host + "/goto?url="
          +encodeURIComponent(jQuery(this).attr("href")));
 });
});