function setSiteHeight(){
	if($('content')){
		$('schatten').style.height = window.getScrollHeight()+'px';
		var oImg = new Image();
		if(!(navigator.appName.indexOf("Explorer") > -1)){
			imgName = getComputedStyle($('header'),'').getPropertyValue('background-image').split('/');
			imgName = 'files/'+imgName[imgName.length-1];
			oImg.src = imgName.substr(0,imgName.length-1);
			window.addEvent('resize', function(){
				siteMinHeight = oImg.height;
				$('schatten').style.height = siteMinHeight+'px';
				$('schatten').style.height = window.getScrollHeight()+'px';
			});
		}
	}
}

window.addEvent('domready', function(){
	setSiteHeight();
});

Cufon.set('fontFamily', 'HelveticaNeueLTPro-Bd');
Cufon.replace('#article h1.mainHeadline');