$(document).ready(function(){
	$("a").each(function(){
		var h = $(this).attr("href");
		if(h && h.lastIndexOf('&t=http://')!= -1){			
			var hh = h.substring(h.lastIndexOf('&t=http://')+3,h.length);
			$(this).attr('href',hh);
			$(this).attr('target','_blank');
			$(this).click(function(){	
				$(this).attr('target','_blank');
				$(this).attr('href',h);
			});
		}
		
	});
});
