function Fensterhoehe () {
  height = $(window).height();
  height = ( (height + ScrollPosition()) - 251); 
  return height;
}

function neuAufbau () {
    Hoehe = Fensterhoehe();
    $('#content').height(Hoehe);
}
        
function ScrollPosition() {
	var scrOfY = 0;
    scrOfY  = $(window).scrollTop();
	return scrOfY;
}

