// js
window.addEvent('domready', function(){
	
	$$('a[rel=external]').each(function(el){
		 el.setProperty('target','_blank');
	});

});