//BAW

$(document).ready(function(){
	//References
	var sections = $(".items ul li");
	var loading  = $("#loading");
	var content  = $("#contentBox");
	
	//Ladebalken ausblenden
	hideLoading();
		
	//Manage click events
	sections.click(function(){
		
		//Aktives Menu markieren:
		sections.removeClass("active");	
		$('li#'+this.id).addClass("active");
		
		//load selected section
		/*
		content.fadeOut(0);
		content.load("/fileadmin/php/wanderungen.php?bawid="+this.id);
		content.fadeIn(1500);
		*/
		//load selected section
		showLoading();
		content.load("/fileadmin/php/wanderungen.php?bawid="+this.id, function() {
		 	hideLoading();
		});

		
	});
	
	
	//show loading bar
	function showLoading(){
		loading
			.css({visibility:"visible"})
			.css({opacity:"1"})
			.css({display:"block"})
		;
	}
	//hide loading bar
	function hideLoading(){
		loading.fadeOut(300);	
	};
});
