window.addEvent('domready', function(){

	var a = $$('a');
	
	a.each(function(e,idx){
	
		if(e.get('href').indexOf('antitrusttoday.com')==-1 && e.get('href').indexOf('http')>-1)
		{
			e.set('target','_blank');
		}
	
	});

});
