$(document).ready(function() {
	$('.about').click(function() {
		$(this).parents('#thewrapper').children('#content').children('#about').fadeIn(800);
		$(this).parents('#thewrapper').children('#content').children('#kontakt').fadeOut(800);
		$(this).parents('#thewrapper').children('#zitat').animate({ marginBottom:'-=410'}, 800);
	});
	$('.close').click(function() {
		$(this).parents('#thewrapper').children('#content').children('#about').fadeOut(800);
		$(this).parents('#thewrapper').children('#content').children('#kontakt').fadeOut(800);
	});
	
	$('.kontakt').click(function() {
		$(this).parents('#thewrapper').children('#content').children('#kontakt').fadeIn(800);
		$(this).parents('#thewrapper').children('#content').children('#about').fadeOut(800);
		$(this).parents('#thewrapper').children('#zitat').animate({ marginBottom:'-=410'}, 800);
	});
	$('.close').click(function() {
		$(this).parents('#thewrapper').children('#content').children('#kontakt').fadeOut(800);
		$(this).parents('#thewrapper').children('#content').children('#about').fadeOut(800);
	});
	
	$('#flieger').click(function() {
		$(this).parents('#thewrapper').children('#zitat').animate({ marginBottom:'65'}, 800);
		$(this).parents('#thewrapper').children('#content').children('#kontakt').fadeOut(800);
		$(this).parents('#thewrapper').children('#content').children('#about').fadeOut(800);
	});
	$('#login').click(function() {
		$(this).parents('#cover').fadeOut(800);
	});
});
//	console.log(this);
