// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (TransMenu.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Contact", "index.asp?page=contact.html");
		menu1.addItem("Historie", "index.asp?page=historie.html");
		menu1.addItem("Lid Worden of afmelden?", "index.asp?page=lidworden.html");
		menu1.addItem("Route", "index.asp?page=route.html");
		menu1.addItem("Wedstrijdverslagen", "index.asp?page=wedstrijdverslag.html");
		menu1.addItem("Jongste jeugd", "index.asp?page=minihockey.html");
		menu1.addItem("Trimhockey", "index.asp?page=trimhockey.html");
		menu1.addItem("G-Hockey", "index.asp?page=ghockey.html");
		menu1.addItem("Teams","index.asp?page=teams.asp");
		menu1.addItem("Keeperscorner","index.asp?page=keeperscorner.html");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Wedstrijdschema", "index.asp?page=wedstrijdschema.html");
		menu2.addItem("Trainingen", "index.asp?page=training.asp");
		menu2.addItem("Clubagenda", "index.asp?page=agenda.html");
		menu2.addItem("Wedstrijdtafel", "index.asp?page=bestuursdiensten.html");
		menu2.addItem("Zaalschema", "index.asp?page=zaal.html");
		menu2.addItem("Toernooien","index.asp?page=toernooi.html");

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Bestuur", "index.asp?page=bestuur.asp");
		menu3.addItem("T.C.", "index.asp?page=tc.asp");
		menu3.addItem("Activiteiten", "index.asp?page=activiteitencommissie.html");
		menu3.addItem("Arbitrage", "index.asp?page=arbitrage.html");
		menu3.addItem("Kantine", "index.asp?page=kantine.html");
		menu3.addItem("Redactie", "index.asp?page=redactie.html");
		menu3.addItem("Sponsorcommissie", "index.asp?page=sponsor.asp");
		menu3.addItem("Kunstgras", "index.asp?page=kunstgras.html. ");


		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Foto's", "index.asp?page=fotogalerij.html");
		menu4.addItem("Downloads", "index.asp?page=downloads.html");
		menu4.addItem("Links", "index.asp?page=links.html");
		menu4.addItem("2e hands Kleding", "index.asp?page=tweedehandskleding.html");



				
		

				
		//==================================================================================================

		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		TransMenu.renderAll();
	}


