$(document).ready(function(){
	$("a[rel='externo']").click(function( e ){
		e.preventDefault();
		window.open( $( this ).attr('href') );
	});
});