function gr(e)
{
	$(e).animate({
		"width": "+=50",
		"left": "-=25"
	},250);
}

function kl(e)
{
	$(e).animate({
		"width": "-=50",
		"left": "+=25"
	},250);
}

function Standorte(t)
{
	$('#ContentTitel').html("STANDORTE");
	$('#StandortAuswahl').show();
	$('#MainContainer').fadeOut('slow', function() {
			$('#ContentContainer').fadeIn('slow', function () {
					$('#ContentBody').load('TuSStockum.inc.html');
				}
			);
		}	
	);
}

function Content(titel,datei)
{
	$('#ContentTitel').html(titel);
	$('#StandortAuswahl').hide();
	$('#MainContainer').fadeOut('slow', function() {
			$('#ContentContainer').fadeIn('slow', function () {
					$('#ContentBody').load(datei);
				}
			);
		}	
	);
	if (titel="AKTUELLES")
	{
		$('#ContentBody').css('height:800;');
	}
}


function zurueck()
{
	$('#ContentContainer').fadeOut('slow', function() {
			$('#MainContainer').fadeIn('slow');
		}	
	);
	$('#ContentBody').html('<img src="lade.gif">');
}
