// set up drop downs anywhere in the body of the page. 
if (mtDropDown.isSupported()) {

	//==================================================================================================
	// create a set of dropdowns: By the way, youngpup.net created this script not mt...
	//==================================================================================================

	var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

	
	
	
	
	// menu : Info
	var menu2 = ms.addMenu(document.getElementById("menu2"));
	menu2.addItem("- Company Profile", "profiel.htm");		
	menu2.addItem("- Press", "press.htm");
	menu2.addItem("- Vacatures", "vacatures.htm");
			

	// menu : Collectie
	var menu3 = ms.addMenu(document.getElementById("menu3"));
	menu3.addItem("- Zomer", "zomer.htm");
	menu3.addItem("- Winter", "winter.htm");

			
	
		
	// menu : Import
	var menu4 = ms.addMenu(document.getElementById("menu4"));
	menu4.addItem("- Private Label", "privatelabel.htm");
	menu4.addItem("- Stetson", "stetson.htm");
	menu4.addItem("- Barmah", "barmah.htm");
	menu4.addItem("- Laulhere", "laulhere.htm");
	menu4.addItem("- Kangol", "kangol.htm");
		

// menu : contact
      var menu5 = ms.addMenu(document.getElementById("menu6"));
      menu5.addItem("- Contact", "contact.htm");
      menu5.addItem("- Route", "route.htm");


	mtDropDown.renderAll();
}

