window.onload = init;

function init()
{
	var formaat = readCookie('tekstGrootte')
	if (formaat)
	{
		setTextSize(formaat);
	}
}

function setTextSize(waarde)
{
	x = document.getElementById('contentcel');
	x.className = waarde;
	createCookie('tekstGrootte',waarde,0);
}