$(function() {
				
	$('a.email').each(function() {
		
		var id = '#' + $(this).attr('id');
		var email = $(id + ' span:first').text() + '@' + $(id + ' span:last').text() + '.de';
		var test = $('#second span:first').text();
		$(id).attr({ "href" : ('mailto:' + email) });
		$(id + ' span:first').remove();
		$(id + ' span:last').replaceWith(email);
		
	});
	
	$('.extern01').attr({ "target" : "_blank" });

	if ($('.image').length > 0) {
	
		$('.image a').LightboxPreFinal();
		
	}
	
	if ($('#thomasvolgmann').length > 0) {

		$('#thomasvolgmann a').LightboxPreFinal();
		
	}
	
	var myurl = document.URL;
	var mysearch = myurl.search(/#makrele/);
	
	if(mysearch > -1) {
	
	    $("#makrele").css({ "border-color" : "#bf0000" });
	    
	}
	
	$('.text p').not('.donthyphenate').addClass('hyphenate');

});
