﻿$(function(){

	$('.startseite').click(function(){
		$('#page').fadeOut(180);
		document.location = './';
	});
	
	$('.klasse').click(function(){
		$('#page').fadeOut(180);
		document.location = './klasse/';
	});
	
	$('.photos').click(function(){
		$('#page').fadeOut(180);
		document.location = './photos/';
	});
	
	$('.forum').click(function(){
		$('#page').fadeOut(180);
		document.location = './general/';
	});
	
	$('.links').click(function(){
		$('#page').fadeOut(180);
		document.location = './links/';
	});
	
	$('.gaeste').click(function(){
		$('#page').fadeOut(180);
		document.location = './gaeste/';
	});
	
})
