function SiteResize()
{
	//uninfluenced heights
	var h_top_till_mainmenubottom = 321;
	var h_content_l_space = $('.content_l_space').height();
	var h_content_l = $('.content_l').height();

	if(h_content_l < h_content_l_space)
	{
		$('.content_l').height($('.links_achter').height() - h_top_till_mainmenubottom - 40); //40 because padding
	}

	height2deduct = $('.holder').height() - 19 - 35;
	$('.links').height(height2deduct);
	$('.links_holder').height(height2deduct);
	$('.links_achter').height(height2deduct - 1);

}