	// 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.
	
		//==================================================================================================
		// 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, -2, 0, 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[1]);
		//subMenu1.addItem("<b>&raquo;</b> sublink", "#");
		//subMenu1.addItem("<b>&raquo;</b> sublink", "#");
		
		// menu1 : keukens
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("<b>&raquo;</b> Keuken Kasten", "http://www.yro.nl/keukens/keukenkasten.php");
		menu1.addItem("<b>&raquo;</b> Keuken merken", "http://www.yro.nl/keukens/keukenmerken.php");
		menu1.addItem("<b>&raquo;</b> Keukenontwerp", "http://www.yro.nl/keukens/keukenontwerp.php");
		menu1.addItem("<b>&raquo;</b> Werkbladen", "http://www.yro.nl/keukens/werkbladen.php");
		menu1.addItem("<b>&raquo;</b> Spoelbakken en kranen", "http://www.yro.nl/keukens/spoelbak.php");
		menu1.addItem("<b>&raquo;</b> Wand- en vloertegels", "http://www.yro.nl/keukens/tegels.php");
		menu1.addItem("<b>&raquo;</b> Showroomkeukens", "http://www.yro.nl/keukens/showroomkeukens.php");
		menu1.addItem("<b>&raquo;</b> Keukenofferte aan huis", "http://www.yro.nl/keukens/keukenofferte-aan-huis.php");
		
		
		// menu2 : Apparatuur
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("<b>&raquo;</b> Inbouw apparatuur", "http://www.yro.nl/keukens/apparatuur.php");
		menu2.addItem("<b>&raquo;</b> Inbouw apparatuur aanvragen", "http://www.yro.nl/keukens/apparatuur_aanvraag.php");
		menu2.addItem("<b>&raquo;</b> Fornuizen, vrijstaand", "http://www.yro.nl/keukens/fornuizenvrijstaand.php");
		menu2.addItem("<b>&raquo;</b> Leveringsvoorwaarden inbouwapparatuur", "http://www.yro.nl/keukens/leveringsvoorwaardeninbouwapparatuur.php");
		
		
		// menu3 : Aanbiedingen
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("<b>&raquo;</b> Aanbieding van de Maand", "http://www.yro.nl/keukens/aanbieding.php");
		menu3.addItem("<b>&raquo;</b> Aanbieding Showroomkeukens", "http://www.yro.nl/keukens/aanbieding_showroomkeukens.php");
		menu3.addItem("<b>&raquo;</b> Aanbieding Inbouwapparatuur", "http://www.yro.nl/keukens/inbouwapparatuur.php");
		menu3.addItem("<b>&raquo;</b> Diverse acties", "http://www.yro.nl/keukens/acties.php");
		
		
		// menu4 : Yro
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("<b>&raquo;</b> Algemeen", "http://www.yro.nl/keukens/algemeen.php");
		menu4.addItem("<b>&raquo;</b> Medewerkers", "http://www.yro.nl/keukens/medewerkers.php");
		menu4.addItem("<b>&raquo;</b> Monteurs/montage", "http://www.yro.nl/keukens/monteurs.php");
		menu4.addItem("<b>&raquo;</b> Contact opnemen", "http://www.yro.nl/keukens/contact.php");
		
		
		// menu5 : Filialen
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("<b>&raquo;</b> Yro Marknesse", "http://www.yro.nl/keukens/marknesse.php");
		menu5.addItem("<b>&raquo;</b> Yro Hasselt", "http://www.yro.nl/keukens/hasselt.php");
		
		
		// menu6 : Contact
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("<b>&raquo;</b> Contactgegevens", "http://www.yro.nl/keukens/contact.php");
		menu6.addItem("<b>&raquo;</b> Reageren", "http://www.yro.nl/keukens/reageren.php");
		menu6.addItem("<b>&raquo;</b> Reacties", "http://www.yro.nl/keukens/reacties.php");
		menu6.addItem("<b>&raquo;</b> Advies aan huis", "http://www.yro.nl/keukens/keukenadvies-aan-huis.php");
		
		
		
		//==================================================================================================
		// 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();
	

