function init_menu() {
	// products menu
	var oServiceMenu = new cDropMenu();
	oServiceMenu.addItem('Programma','/pages/content.php/programma');
	oServiceMenu.addItem('Uitleg activiteiten','/pages/content.php/uitleg');
	oServiceMenu.addItem('Winter','/pages/content.php/winter');
	oServiceMenu.addItem('Faciliteiten','/pages/content.php/faciliteiten');
	oServiceMenu.addItem('Catering','/pages/content.php/catering');
	oServiceMenu.AttachTo(document.getElementById('menumogelijkheden'));

	var oServiceMenu = new cDropMenu();
	oServiceMenu.addItem('Fotoalbum','/pages/content.php/fotoalbum');
	oServiceMenu.addItem('Promofilm','/pages/content.php/promofilm');
	oServiceMenu.addItem('TV Opnames','/pages/content.php/tvopname');
	oServiceMenu.AttachTo(document.getElementById('menukijkje'));
	
	var oDownloadsMenu = new cDropMenu();
	oDownloadsMenu.addItem('Scholen Informatie','/pages/content.php/scholeninfo');
	oAnimationMenu = oDownloadsMenu.addItem('Referenties','/pages/content.php/referenties');
	oDownloadsMenu.AttachTo(document.getElementById('menuinfo'));
	
}

cDropMenu.AttachEvent(window.addEventListener || window.attachEvent ? window : document.addEventListener ? document : null,
					  'load',init_menu);
