menuHeight		= parseInt(document.getElementById('menuContainer').clientHeight);
indholdHeight	= parseInt(document.getElementById('indholdContainer').clientHeight);



if (menuHeight > indholdHeight)
{	
	 nyHeight = menuHeight - 220;

	 document.getElementById('indholdContainer').style.height = nyHeight + 'px';
}
else
{
	document.getElementById('menuContainer').style.height = indholdHeight + 'px';
}