//window.addEvent('domready', function() {
//	replaceOuterLinks();
//});
function on_dom_ready() {
	replaceOuterLinks();
}
function replaceOuterLinks() {
	var anchor = document.getElementsByTagName("a");
	for(i=0;i<anchor.length;i++){
		if(anchor[i].rel=="outerlink"){
			href = anchor[i].href;
			anchor[i].rel = href;
			anchor[i].href = "#";
			anchor[i].onclick = function(e){
				window.open(this.rel);	
			}
		}
	}
}