$(document).ready(function(){
	$('a[rel="external"]')
	.bind('click', function() { window.open($(this).attr('href')); return false; })
	.each(function(){
		if($(this).attr('title'))
			$(this).attr('title', $(this).attr('title') + ' (opens in new window)');
		else
			$(this).attr('title', '(Opens in new window)');
	});
});