var programma, informatie, foto, pers;
		
		window.onload = function() {
			programma = new fx.Combo('programma', {height: true, opacity: true, duration: 500});
			informatie = new fx.Combo('informatie', {height: true, opacity: true, duration: 500});
			foto = new fx.Combo('foto', {height: true, opacity: true, duration: 500});
			pers = new fx.Combo('pers', {height: true, opacity: true, duration: 500});
			
			// Hide them to begin with
			programma.hide();
			informatie.hide();
			foto.hide();
			pers.hide();
		}
