	// 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 (mtDropDown.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 mtDropDownSet(mtDropDown.direction.down, 0, 1, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		//==================================================================================================
		// add a sub-menu
		//==================================================================================================
		// to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from
		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu
		// called "theMenu", you would do theMenu.addMenu(theMenu.items[3])
		//==================================================================================================
		// submenu example
		//var subMenu1 = menu1.addMenu(menu1.items[0]);
		//subMenu1.addItem("<b>&raquo;</b> sublink", "#");
		//subMenu1.addItem("<b>&raquo;</b> sublink", "#");


		// menu1 : Nieuws
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("&minus; Nieuwsoverzicht",		"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=132&cId=0");
//		menu1.addItem("&minus; Achtergrond",		"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=163&cId=0");

		// menu2 : Diensten
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&minus; Webapplicaties",		"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=151&cId=0");
		menu2.addItem("&minus; Systeemintegratie",	"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=162&cId=0");
		menu2.addItem("&minus; Content Management",	"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=233&cId=0");
		menu2.addItem("&minus; Werkwijze",			"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=234&cId=0");
		menu2.addItem("&minus; Technieken",		"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=235&cId=0");
		
		// menu3 : Contact
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&minus; Adres",			"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=236&cId=0");
		menu3.addItem("&minus; Route",			"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=237&cId=0");
		
		// menu4 : Portfolio
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&minus; Projecten",			"http://www.roes.nl/SiteManager.php?cSite=13&cLayout=42&cPage=145&cId=0");
		menu4.addItem("&minus; Cases",			"http://www.roes.nl/SiteManager.php?cSite=13&cLayout=42&cPage=238&cId=0");
//		menu4.addItem("&minus; Klanten",			"http://www.roes.nl/SiteManager.php?cSite=13&cLayout=42&cPage=239&cId=0");
		menu4.addItem("&minus; Branches",			"http://www.roes.nl/SiteManager.php?cSite=13&cLayout=42&cPage=240&cId=0");

		// menu5 : Bedrijf
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("&minus; Organisatie",		"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=138&cId=0");
//		menu5.addItem("&minus; Mensen",			"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=139&cId=0");
		menu5.addItem("&minus; Visie",			"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=140&cId=0");
		menu5.addItem("&minus; Partners",			"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=141&cId=0");
		menu5.addItem("&minus; Vacatures",			"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=149&cId=0");

		// menu6 : Downloads
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("&minus; Brochures",			"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=160&cId=0");
		menu6.addItem("&minus; Presentaties",		"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=241&cId=0");
		menu6.addItem("&minus; Onderzoeken",		"http://www.roes.nl/SiteManager.php?cSite=15&cLayout=42&cPage=153&cId=0");



		//==================================================================================================
		// 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.
		//==================================================================================================
		mtDropDown.renderAll();
	}
