$(document).ready(function(){
		
		// first simple accordion with special markup
		jQuery('#slide').accordion({
			header: 'div.titel',
			active: false,
			alwaysOpen: false,
			animated: "slide",
			autoHeight: false
		});
		
		 /* stats tab navigation http://jqueryfordesigners.com/jquery-tabs/ */
        var tabContent = $('#left > div');
        $('#left map area').click(
            function () {
                tabContent.hide().filter(this.hash).fadeIn('normal');
                return false;
            }
        ).filter(':first').click();
		
	});
