/* JavaScript Document */
<!--
		function showBuehne(url){
			$("#Buehne").fadeOut(function(){
				// FadeOut ist fertig, lade neuen Content
				$("#Buehne").load(url, function(response, status, xhr) {
					if (status == "error") {
						// Fehler beim Laden
						// mache nichts...
					}
					else {
						// Ok, Content einblenden
						$("#Buehne").fadeIn();
					}
				});
			});
		};
//-->
