$(function() {	$("a[@rel='external']").each(		function(){			title = $(this).attr('title');			$(this).attr('title',title+' [Opens in a new window]');			$(this).click(function() {return !window.open($(this).attr("href"));});		}	);})