$(document).ready(function(){

	$('.toggle_container').hide(); 

	$('h2.trigger').toggle(function(){
		$(this).addClass('active');
		}, function () {
		$(this).removeClass('active');
	});

	$('h2.trigger').click(function(){
		$(this).next('.toggle_container').slideToggle('slow');
	});
	
	$('.m').each(function () {
		$('span:first', this).replaceWith('@');
		$('span:first', this).replaceWith('.'); // 2. span ist jetzt das erste
		$('span', this).replaceWith('');
		var text = $(this).text().replace('***','').replace('***','');
		$(this).html('<a href="mailto:'+text+'">'+text+'</a>');
	});

});
