$(document).ready(function() {
	/*if($.cookie("intro") == 'hide') {*/
	if(0) {
		$('div#grusswort').show();
		$('div#intro').hide();
	} else {
		$('div#grusswort').show();
		$('div#intro').hide();
	}
	$('div#introhead').click(function() {
		$('div#grusswort').show();
		$('div#intro').hide();
		$.cookie("intro", "hide", { expires: 1095 });
	});

	$('span#opengw').click(function() {
		$('div#grusswort').hide();
		$('div#intro').show();
		$.cookie("intro", "show", { expires: 1095 });
	});

});


