

// 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("注册办事处", "http://www.rolegal.com/cn/bucharest-registered-office.html");

		menu2.addItem("虚拟办公室", "http://www.rolegal.com/cn/virtual-office-romania.html");

		menu2.addItem("银行帐户", "http://www.rolegal.com/cn/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("公司及商业法", "http://www.rolegal.com/cn/corporate-and-commercial-law-romania.html");
		menu5.addItem("诉讼", "http://www.rolegal.com/cn/litigation-lawyers-romania.html");
		menu5.addItem("债务催收", "http://www.rolegal.com/cn/debt-collection-romania.html");
		menu5.addItem("咨询服务", "http://www.rolegal.com/cn/legal-consulting-romania.html");
		menu5.addItem("特别许可证和执照", "http://www.rolegal.com/cn/romanian-special-permits-licenses.html");
			var submenu1 = menu5.addMenu(menu5.items[4]);
				submenu1.addItem("赌博牌照", "http://www.rolegal.com/cn/romania-gambling-license.html");
				submenu1.addItem("运输许可证", "http://www.rolegal.com/cn/romania-transportation-license.html");
		menu5.addItem("税法", "http://www.rolegal.com/cn/lawyers-romania-practice-areas.html");
		menu5.addItem("房地产法", "http://www.rolegal.com/cn/due-diligence-romania.html");
		menu5.addItem("知识产权法", "http://www.rolegal.com/cn/intellectual-property-law-romania.html");
			var submenu2 = menu5.addMenu(menu5.items[7]);
				submenu2.addItem("商标注册", "http://www.rolegal.com/cn/trademarks-registration.html");
				submenu2.addItem("图纸登记", "http://www.rolegal.com/cn/drawings-registration.html");
				submenu2.addItem("专利登记", "http://www.rolegal.com/cn/patents-registration.html");
		menu5.addItem("并购", "http://www.rolegal.com/cn/mergers-and-acquisitions-romania.html");
		menu5.addItem("移民法", "http://www.rolegal.com/cn/immigration-romania.html");
			var submenu3 = menu5.addMenu(menu5.items[9]);
				submenu3.addItem("短期签证", "http://www.rolegal.com/cn/short-stay-romanian-visa.html");
				submenu3.addItem("长期居留签证", "http://www.rolegal.com/cn/long-stay-romanian-visa.html");
				submenu3.addItem("长期居留的权利", "http://www.rolegal.com/cn/permanent-stay-right-in-romania.html");
		menu5.addItem("罗马尼亚公民", "http://www.rolegal.com/cn/romanian-citizen/romanian-citizenship.html");		
		menu5.addItem("就业法", "http://www.rolegal.com/cn/employment-labor-law-romania.html");

		  

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

				submenu0.addItem("一般信息", "http://www.rolegal.com/cn/company-formation-romania.html");
				submenu0.addItem("货架公司", "http://www.rolegal.com/cn/shelf-company-romania.html");
				submenu0.addItem("成立有限责任公司", "http://www.rolegal.com/cn/set-up-romanian-llc.html");
				submenu0.addItem("成立联合股份公司", "http://www.rolegal.com/cn/set-up-romanian-joint-stock-company.html");
				submenu0.addItem("公司分行", "http://www.rolegal.com/cn/company-branch-romania.html");
				submenu0.addItem("成立子公司", "http://www.rolegal.com/cn/set-up-subsidiary-romania.html");
				submenu0.addItem("设立代表处", "http://www.rolegal.com/cn/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();

	}
