document.observe("dom:loaded", function() {
	replaceTBlank();
});

function replaceTBlank(){
	if($('content')){
		var links = $('content').select('a[rel="tBlank"]');
		links.each(function(node){
			node.writeAttribute("target","_blank");
		});
	}		
}