function setSiteHeight()
{
	var pageWidth = $(document).width();
	var pageHeight = $(document).height();

	var viewportWidth = $(window).width();
	var viewportHeight = $(window).height();
	
	var topHeight = $('#header').height() + $('#logo').height(); 
	var textHeight = $('#text').height();
	var siteHeight = topHeight + textHeight;
	
	/*
	var debugctr = document.getElementById('debugr');
	debugctr.innerHTML = debugctr.innerHTML + '<br /><br />Site: ' + siteHeight + '<br />Viewport: ' + viewportHeight;
	*/
	
	if (siteHeight < viewportHeight)
	{
		$('#text').css('height', (viewportHeight-topHeight-100) + 'px')
	}
	$('#text').css('background-color','white');
}