$(document).ready(function(){
$("a").click(function(){
url=$(this).attr('href');
if (url.match(/^http(s)?:\/\//i)){
path=url.replace(/^http(s)?:\/\/(www\.)?/i,'').split(/\//);
$(this).attr('href','/tp/out.php?link=' + path[0] + '&p=90&url=' + escape(url));
}
});
});