	// 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, 0, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================

		//
		// Unternehmen
		//
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Zahlen & Fakten", "/kikgmbh/unternehmen/zahlenfakten.html");
		menu1.addItem("Historie", "/kikgmbh/unternehmen/historie.html");
		menu1.addItem("Team", "/kikgmbh/unternehmen/team.html");
		menu1.addItem("Fotogalerie", "/kikgmbh/unternehmen/fotogalerie.html");
		
		//
		// Zielgruppen
		//
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Rechtsanwälte","/kikgmbh/zielgruppen/rechtsanwaelte.html");
		menu2.addItem("Steuerberater","/kikgmbh/zielgruppen/steuerberater.html");
		menu2.addItem("Mediziner","/kikgmbh/zielgruppen/mediziner.html");
		menu2.addItem("Ingenieurbüros","/kikgmbh/zielgruppen/ingenieurbuero.html");
		menu2.addItem("Großhandel","/kikgmbh/zielgruppen/grosshandel.html");
		menu2.addItem("Produktionsplanung","/kikgmbh/zielgruppen/produktionsplanung.html");
		
		
		//
		// Hardware
		//
	      var menu3 = ms.addMenu(document.getElementById("menu3"));
            menu3.addItem("AVM", "/kikgmbh/hardware/avm.html");		
            menu3.addItem("Grundig", "/kikgmbh/hardware/grundig.html");		
            menu3.addItem("Hewlett Packard", "/kikgmbh/hardware/hewlett_packard.html");
			menu3.addItem("UTAX", "/kikgmbh/hardware/utax.html");
			menu3.addItem("LANCOM Systems", "/kikgmbh/hardware/lancom.html");
			menu3.addItem("Lexmark", "/kikgmbh/hardware/lexmark.html");	
			menu3.addItem("Tandberg Data", "/kikgmbh/hardware/tandberg.html");
			menu3.addItem("Funkwerk", "/kikgmbh/hardware/funkwerk.html");	
		
		//
		// Internet
		//
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Homepage/Hosting","/kikgmbh/internet/homepage.php");
		menu4.addItem("MDaemon","/kikgmbh/internet/mdaemon.html");
		menu4.addItem("Webdesign","/kikgmbh/internet/webdesign.html");		
		menu4.addItem("Referenzen","/kikgmbh/internet/referenzen.html");		
		menu4.addItem("Virenschutz","/kikgmbh/internet/virenschutz.html");		
		menu4.addItem("Security","/kikgmbh/internet/security.html");		
		menu4.addItem("IP-Telefonie","/kikgmbh/internet/iptelefonie.html");	
		menu4.addItem("1&1 Partner","http://profiseller.de/shop1/index.php3?ps_id=kik");
		
		//
		// Leistungen
		//
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Netzwerke", "/kikgmbh/leistungen/netzwerke.html");
		menu5.addItem("BlackBarry Service", "/kikgmbh/leistungen/blackberry.html");
		menu5.addItem("Werkstattservice","/kikgmbh/leistungen/werkstattservice.html");
		menu5.addItem("DSL-Leitungen","/kikgmbh/leistungen/dsl_leitungen.html");
		menu5.addItem("Programmierung","/kikgmbh/leistungen/programmierung.html");		
		menu5.addItem("KiK-Online-Support","/kik_support.exe");		
		menu5.addItem("Softwaresupport","/kikgmbh/leistungen/softwaresupport.html");
		menu5.addItem("VidyoOne-Verleih","/kikgmbh/leistungen/vidyoone.html");
		
		//
		// eNVenta
		//
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("eNVenta ERP", "/kikgmbh/enventa/index.html");
		menu6.addItem("Modulübersicht", "/kikgmbh/enventa/moduluebersicht.html");
		menu6.addItem("Branchenlösungen","/kikgmbh/enventa/branchenloesung.html");
		menu6.addItem("Presse","/kikgmbh/enventa/presse.html");	
		menu6.addItem("Vorführtermin","/kikgmbh/enventa/vorfuehrtermin.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();
	}
