window.addEvent('domready', function(e){
	    var siteUrl = document.location.hostname;
	    $each($$('a'), function(item){
	        var linkUrl = item.get('href');
	        if(linkUrl.test("^http://") && !linkUrl.test("^http://(www\.)?" + siteUrl))
	            item.setProperty('target', '_blank');
	    });
	});
