$(document).ready(function(){
	$('a').each(function(){
		if($(this).attr('rel') == 'external')
		{
			$(this).attr('target', '_blank').attr('title', 'Wird in einem neuen Fenster geöffnet');
		}
	})
	
	$('h1').click(function(){
		top.location = 'verantwortungspartner_lippe';
	});
});