/* AANPASSEN HOOGTE DIV */

function aanpassenHoogteDIV()
{
	if(document.getElementById("nieuwshome"))
	{
		aanpasDIV = document.getElementById("nieuwshome");
	
		if(aanpasDIV.style.height < 190+"px")
		{
			aanpasDIV.style.height = 117+"px";
		}
		else
		{
			alert(aanpasDIV.style.height);
		}
	}
}

window.onload = function()
{
	aanpassenHoogteDIV();
}
