var currentSelection = "";
	
function loadContent( containerID, file ) {
	
	if( currentSelection == containerID )
	{
		$("#"+currentSelection).slideUp("fast", function() {$(".mainPicture").fadeIn("slow");} );
		currentSelection = "";
		
		//x verbergen
		$("#x_"+containerID).hide();
						
	} else {
		
		$(".mainPicture").hide();
				
		$(".newsContent").slideUp("fast");	
		// Inhalt Anfragen
		var content = $.ajax({ type: "GET", async: false, url: file, cache: false }).responseText;
		
		// Container verbergen
		$("#"+containerID).hide();
		// Inhalt ausgeben
		$("#"+containerID).html( content );
		//$("#"+containerID).show();
		$("#"+containerID).slideDown("fast");
		//x einblenden
		$("#x_"+containerID).show();
		$("#x_"+currentSelection).hide();
	
		currentSelection = containerID;	
	}
}	

