$(document).ready(function(){ 
	
	$('a[rel="external"]').live('click', function() {
		window.open($(this).attr('href'));
		return false;
	});

});
