// JavaScript Document

 $(document).ready(function(){
  	var winhoehe = window.innerHeight-30;
	if(typeof window.innerHeight == 'undefined'){
		winhoehe = document.documentElement.clientHeight-20;
	}
	else{
		winhoehe = window.innerHeight-30;
	}
	winhoehe = parseInt(winhoehe);
	var coho = document.getElementById("content").scrollHeight;
	var aktHoehe = document.getElementById("navigation").scrollHeight;
	aktHoehe = aktHoehe+65;
	if(coho>winhoehe){
		if(coho>aktHoehe){
			$('#navigation').css('height', coho+"px");
		}
	}
	else {
		if(winhoehe>aktHoehe){
			$('#navigation').attr({style: "height:"+winhoehe+"px;"})
		}
	}
	});

