

// 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("additional"));

		menu2.addItem("Registered office", "http://www.rolegal.com/bucharest-registered-office.html");

		menu2.addItem("Virtual office ", "http://www.rolegal.com/virtual-office-romania.html");

		menu2.addItem("Bank accounts", "http://www.rolegal.com/bank-account-romania.html");

		//==================================================================================================



		//==================================================================================================

		/*var menu3 = ms.addMenu(document.getElementById("servicii"));

		menu3.addItem("Servicii Proprietate Industriala", "http://www.romarkip.ro/servicii-proprietate-industriala.html");

		menu3.addItem("Reprezentare in Instanta", "http://www.romarkip.ro/reprezentare-instanta-proprietate-intelectuala.html");

		*/

		//==================================================================================================



		//==================================================================================================

	/*	var menu4 = ms.addMenu(document.getElementById("news"));

		menu4.addItem("news Nationale", "http://www.romarkip.ro/inregistrare-news-inventie.html#nationale");

		menu4.addItem("news Regionale", "http://www.romarkip.ro/inregistrare-news-inventie.html#regionale");

		menu4.addItem("news Internationalee", "http://www.romarkip.ro/inregistrare-news-inventie.html#internationale");

	*/

		//==================================================================================================



		//==================================================================================================

	var menu5 = ms.addMenu(document.getElementById("practiceareas"));

	

		menu5.addItem("Corporate & Commercial Law", "http://www.rolegal.com/corporate-and-commercial-law-romania.html");
		

		menu5.addItem("Litigation", "http://www.rolegal.com/litigation-lawyers-romania.html");
		menu5.addItem("Debt Collection", "http://www.rolegal.com/debt-collection-romania.html");

		menu5.addItem("Consultancy Services", "http://www.rolegal.com/legal-consulting-romania.html");
		menu5.addItem("Special Permits and Licenses", "http://www.rolegal.com/romanian-special-permits-licenses.html");
		var submenu11 = menu5.addMenu(menu5.items[4]);
				submenu11.addItem("Gambling License", "http://www.rolegal.com/romania-gambling-license.html");
				submenu11.addItem("Transportation License", "http://www.rolegal.com/romania-transportation-license.html");
		menu5.addItem("Tax Law", "http://www.rolegal.com/lawyers-romania-practice-areas.html");

		menu5.addItem("Real Estate Law", "http://www.rolegal.com/due-diligence-romania.html");
		menu5.addItem("Intellectual Property Law", "http://www.rolegal.com/intellectual-property-law-romania.html");

		var submenu1 = menu5.addMenu(menu5.items[7]);

				submenu1.addItem("Trademarks Registration", "http://www.rolegal.com/trademarks-registration.html");

				submenu1.addItem("Drawings Registration", "http://www.rolegal.com/drawings-registration.html");

				submenu1.addItem("Patents Registration", "http://www.rolegal.com/patents-registration.html");

		menu5.addItem("Mergers & Acquisitions", "http://www.rolegal.com/mergers-and-acquisitions-romania.html");

		menu5.addItem("Immigration Law", "http://www.rolegal.com/immigration-romania.html");

		

		var submenu7 = menu5.addMenu(menu5.items[9]);

				submenu7.addItem("General Information", "http://www.rolegal.com/immigration-romania.html");

				submenu7.addItem("Short-Stay Visa", "http://www.rolegal.com/short-stay-romanian-visa.html");

				submenu7.addItem("Long-Stay Visa", "http://www.rolegal.com/long-stay-romanian-visa.html");

				submenu7.addItem("Permanent-Stay Right", "http://www.rolegal.com/permanent-stay-right-in-romania.html");

		

		

		menu5.addItem("Romanian Citizenship", "http://www.rolegal.com/romanian-citizen/romanian-citizenship.html");		

		menu5.addItem("Employment Law", "http://www.rolegal.com/employment-labor-law-romania.html");

		  

		 var submenu0 = menu5.addMenu(menu5.items[0]);

				submenu0.addItem("General Information", "http://www.rolegal.com/company-formation-romania.html");

				submenu0.addItem("Limited Liability Company (SRL)", "http://www.rolegal.com/set-up-romanian-llc.html");
				submenu0.addItem("Shelf Companies", "http://www.rolegal.com/shelf-company-romania.html");
				submenu0.addItem("Joint Stock Company (SA)", "http://www.rolegal.com/set-up-romanian-joint-stock-company.html");

				submenu0.addItem("Company Branch", "http://www.rolegal.com/company-branch-romania.html");

				submenu0.addItem("Subsidiary", "http://www.rolegal.com/set-up-subsidiary-romania.html");

				submenu0.addItem("Representative Office", "http://www.rolegal.com/set-up-representative-office-romania.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();

	}