$(document).ready(function() {
	// Struktur geladen
	if ($('div#contentSwitcherWrapper').length != 0) {
		$('div#contentSwitcherWrapper').show();
		showContent(1);
	}
});

function showContent(idx) {
	if (idx == 1) {
		$('div#content1Wrapper').show();
		$('div#content2Wrapper').hide();
		$('div#contentSwitcherButton1 a').addClass('act');
		$('div#contentSwitcherButton2 a').removeClass('act');
	} else {
		$('div#content1Wrapper').hide();
		$('div#content2Wrapper').show();
		$('div#contentSwitcherButton1 a').removeClass('act');
		$('div#contentSwitcherButton2 a').addClass('act');
	}
}

