var numfotos = 16;
function nieuwefoto() {
	rand = Math.floor(Math.random()*numfotos)+1;
	document.getElementById('fototop').src = 'images/randoms/random '+rand+'.jpg';
	setTimeout("nieuwefoto();",4000);
}