	// 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, 1, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("desene"));
		menu2.addItem("General Information", "http://www.romarkip.com/registration-of-industrial-drawings.html");
		menu2.addItem("National Drawings", "http://www.romarkip.com/national-industrial-drawing.html");
		menu2.addItem("Community Drawings", "http://www.romarkip.com/community-industrial-drawing.html");
		menu2.addItem("International Drawings", "http://www.romarkip.com/international-industrial-drawing.html");
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("servicii"));
		menu3.addItem("General Information", "http://www.romarkip.com/legal-services.html");
		menu3.addItem("Services for Industrial Property", "http://www.romarkip.com/services-for-industrial-property.html");
		menu3.addItem("Representation in the Court of Justice", "http://www.romarkip.com/representation-in-the-court-of-justice.html");
		
		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("brevete"));
		menu4.addItem("General Information", "http://www.romarkip.com/patents.html");
		menu4.addItem("National Invention Patent", "http://www.romarkip.com/patents.html");
		menu4.addItem("European Invention Patent", "http://www.romarkip.com/patents.html");
		menu4.addItem("International Invention Patent", "http://www.romarkip.com/patents.html");
		//==================================================================================================

		//==================================================================================================
	var menu5 = ms.addMenu(document.getElementById("marci"));
		menu5.addItem("General Information", "http://www.romarkip.com/trademarks.html");
		menu5.addItem("National Trademarks", "http://www.romarkip.com/national-trademarks.html");
		menu5.addItem("Community Trademarks", "http://www.romarkip.com/community-trademarks.html");
		menu5.addItem("International Trademarks", "http://www.romarkip.com/international-trademarks.html");

		//==================================================================================================
/*var menu6 = ms.addMenu(document.getElementById("howtoformacompany1"));
		menu6.addItem("Business Licenses", "http://www.romania-company.com/romania-business-licenses.php");
		menu6.addItem("Bank Account ", "http://www.romania-company.com/romania-business-licenses.php");
		menu6.addItem("Taxes", "http://www.romania-company.com/romania-taxes.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.
		//==================================================================================================
		TransMenu.renderAll();
	}
