jQuery(function ($) {
	/* You can safely use $ in this code block to reference jQuery */

$(document).ready(function() {

	$("body a[target='_blank']").each(function(){
		if($(this).attr('title'))
		{
			$(this).attr('title', 'Link zu: '+$(this).attr('title')+' - (öffnet in neuem Fenster)');
		}
		else
		{
			//$(this).attr('title', 'öffnet in neuem Fenster');
		}
    	$(this).addClass('extern');
	});
});

});
