// Hauptfunktionen der Website

/*-----------------------------------------------------------------------------------------------*/

function scrollFold() 
	{
		var maxHeight=0;
		if (window.innerHeight) maxHeight=window.innerHeight;
		if (document.getElementsByTagName('html')[0].offsetHeight && maxHeight<1) maxHeight=document.getElementsByTagName('html')[0].offsetHeight-10;

if (maxHeight<660) {
		for (var i=0; i<(660-maxHeight); i++) 
		window.scrollTo(0, i); 
		}
	}