var information = "seiten/information.html";
function informationLoader(){window.location.href = information;};
function informationTimer(){var time = setTimeout("informationLoader()", 500);};

var therapie = "seiten/therapie.html";
function therapieLoader(){window.location.href = therapie;};
function therapieTimer(){var time = setTimeout("therapieLoader()", 500);};

var anmeldung = "seiten/anmeldung.html";
function anmeldungLoader(){window.location.href = anmeldung;};
function anmeldungTimer(){var time = setTimeout("anmeldungLoader()", 500);};

var team = "seiten/team.html";
function teamLoader(){window.location.href = team;};
function teamTimer(){var time = setTimeout("teamLoader()", 500);};

var kontakt = "seiten/kontakt.html";
function kontaktLoader(){window.location.href = kontakt;};
function kontaktTimer(){var time = setTimeout("kontaktLoader()", 500);};

var weiteres = "seiten/weiteres.html";
function weiteresLoader(){window.location.href = weiteres;};
function weiteresTimer(){var time = setTimeout("weiteresLoader()", 500);};

$(document).ready(function() {
	$('.nav a').click(function(){
		$('.logo').fadeOut(300);
		$('.humphrey').fadeOut(300);
		$('.nav').fadeOut(300);
		$('.contact').fadeOut(300);
	});
})
