$(document).ready(function() {
						   
// Window
var winh = $(window).height()

$('#metanavi a').address();  


var centerpos = winh - 700

if (winh < 730) {
	
$('#center').css({top:'20px'});
} else {
$('#center').css({top:centerpos / 2 + 'px'});
}


$(window).resize(function(){
						  
var winh = $(window).height()
	

var centerpos = winh - 700

if (winh < 730) {
	
$('#center').css({top:'20px'});
} else {
$('#center').css({top:centerpos / 2 + 'px'});
}

});

//Window end

// Scroll
$('.inhalt').jScrollPane();


$('#content .inhalt:not(:eq(0))').hide();


// Metanavi

$('#metanavi a').click(function(){
										  
	$('#metanavi a').removeClass('aktiv')
	$(this).addClass('aktiv')
	
	var inhaltclass = $(this).attr('alt');
										  
$('.inhalt:visible').fadeOut(200, function(){


$('#' + inhaltclass).fadeIn(200);

});

});



});
