

jQuery(document).ready(function () {
	jQuery("a.impressum").click(function() {
		if (jQuery("div#impressum").parent().css("display") == "none") {
			jQuery("div.c").fadeOut();
			jQuery("div#impressum").parent().delay(1000).fadeIn();
			jQuery("a.impressum").html("startseite").attr("href", "#start");
		} else {
			jQuery("div#impressum").parent().fadeOut();
			jQuery("div.start").delay(1000).fadeIn();
			jQuery("a.impressum").html("impressum").attr("href", "#impressum");
		}
	});
	anschrift = jQuery("p.anschrift").html();
	jQuery("p.anschrift").mouseover(function() {
		jQuery(this).html("anschrift ○ sven schröder . simon-dach-straße . 10245 berlin");
	}).mouseout(function() {
		jQuery(this).html(anschrift);
	});
});

