function muis_over(id)
	{
	document.getElementById(id).style.backgroundImage = "url('images/menu_knop_2.png')";
	document.getElementById(id).style.color = 'black';
	}

function muis_uit(id)
	{
	document.getElementById(id).style.backgroundImage = "url('images/menu_knop_1.png')";
	document.getElementById(id).style.color = 'white';
	}

function andere_pagina(pag)
	{
	window.location = pag + ".htm";
	}

function laad()
	{
	getal = Math.floor(Math.random()*10) + 1;
	plaatje = 'images/foto' + getal + '.jpg';
	document.getElementById('foto').style.backgroundImage = "url(" + plaatje + ")";

	if (document.getElementById('tekst').offsetHeight > 550)
		{
		document.getElementById('variabel').style.height = document.getElementById('tekst').offsetHeight + 20 + 'px';
		}
	}