//Fixar lika höjd på alla boxar på startsidan
function fixBoxesHeight()
{
	if(document.getElementById)
	{
		var box1Height, box2Height, box3Height;
		var highestBox;
		var highestBoxValue;
		
		//höjden på boxarna
		box1Height = document.getElementById('box1Content').offsetHeight;
		box2Height = document.getElementById('box2Content').offsetHeight;
		box3Height = document.getElementById('box3Content').offsetHeight;
		
		if(box1Height >= box2Height)
		{
			highestBox = 1;
		}
		else
		{
			highestBox = 2;
		}
		if(eval('box' + highestBox + 'Height') <= box3Height)
		{
			highestBox = 3
		}
		
		highestBoxValue = eval('document.getElementById(\'box' + highestBox + 'Content\').offsetHeight');
		
		document.getElementById('box1Content').style.height = (highestBoxValue -10) + 'px';
		document.getElementById('box2Content').style.height = (highestBoxValue -10) + 'px';
		document.getElementById('box3Content').style.height = (highestBoxValue -10) + 'px';
	}
}