var domain = "steuerkanzleiseitz.de";

$(document).ready(function() {

	$("a.fancybox").fancybox({
		'titleShow'		: false
	});
	
	$('#div_left').height($('#div_logo').height() + $('#div_content').height() + 100);
	
	$('span.correct_this1').each(function(){
	  e = $(this).attr('rel').replace('/','.');
		e = e + '@' + domain;
		$(this).append("<a href=\"mailto:" + e + "\">" + e + "</a>")
	});
	
	$('span.correct_this2').each(function(){
	  e = $(this).attr('rel').replace('/','.');
		e = e + '@' + domain;
		$(this).append("<a href=\"mailto:" + e + "\">E-Mail</a>")
	});	
});
