	function show_fadeboxes() {
		
		$('.fadebox_content').show('slow');
		$('.fadebox_title .alignright').html('Details ausblenden &raquo;');
		window.location.href = window.location.pathname + window.location.search + '#Details einblenden';
	}
	
	function hide_fadeboxes() {
		$('.fadebox_content').slideUp('slow');
		$('.fadebox_title .alignright').html('Details einblenden &raquo;');
		window.location.href = window.location.pathname + window.location.search + '#Details ausblenden';
	}

	$(window).load(function() {
		//$('.fadebox').children('.fadebox_content').slideUp('slow');
		$('.fadebox').children('.fadebox_content:not(.fadebox_open)').hide();
		$('.fadebox').children('.alignright').html('Details einblenden &raquo;');
		window.location.href = window.location.pathname + window.location.search + '#' + $(this).children('.alignleft').text();
		$('.fadebox_title').click( function() {
			if ( $(this).next('.fadebox_content').is(':hidden') ) {
				hide_fadeboxes();
				$(this).next('.fadebox_content').show('slow');
				$(this).children('.alignright').html('Details ausblenden &raquo;');
				window.location.href = window.location.pathname + window.location.search + '#' + $(this).children('.alignleft').text();
			}
			else {
				$(this).next('.fadebox_content').slideUp();
				$(this).children('.alignright').html('Details einblenden &raquo;');
			}
		});
	});
