				// 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, 0, 4, TransMenu.reference.bottomLeft);
			
					//==================================================================================================
					// create a dropdown menu
					//==================================================================================================
					// the first parameter should be the HTML element which will act actuator for the menu
					//==================================================================================================
			
					
				var menu1 = ms.addMenu(document.getElementById("menu1"));
				menu1.addItem("&nbsp;Values", "about-us.php?div=values1");
				menu1.addItem("&nbsp;History", "about-us.php?div=history");
				menu1.addItem("&nbsp;Affiliations", "about-us.php?div=affiliations");
				menu1.addItem("&nbsp;Community", "about-us.php?div=community");
				
				var menu2 = ms.addMenu(document.getElementById("menu2"));
				menu2.addItem("&nbsp;Partners", "partners.php?div=1");
				menu2.addItem("&nbsp;Senior Associates", "senior-associates.php?div=1");
				menu2.addItem("&nbsp;Associates", "associates.php");
				
				/*var menu21 = menu2.addMenu(menu2.items[0]);
				menu21.addItem("<span >&raquo;</span>&nbsp;Daniel Voicu", "partners.php?div=1");
				menu21.addItem("<span >&raquo;</span>&nbsp;Mugur Filipescu", "partners.php?div=3");
				menu21.addItem("<span >&raquo;</span>&nbsp;Marta E.Popa", "partners.php?div=4");
				menu21.addItem("<span >&raquo;</span>&nbsp;Daniel S. Costea", "partners.php?div=5");
				menu21.addItem("<span >&raquo;</span>&nbsp;Raul M. Mihu", "partners.php?div=6");
				menu21.addItem("<span >&raquo;</span>&nbsp;Cristian Gavrila", "partners.php?div=7");
				menu21.addItem("<span >&raquo;</span>&nbsp;Roxana A. Negutu", "partners.php?div=8");
				menu21.addItem("<span >&raquo;</span>&nbsp;Dumitru I. Rusu", "partners.php?div=9");*/

				var menu3 = ms.addMenu(document.getElementById("menu3"));
				menu3.addItem("&nbsp;Practice Areas", "practice-areas.php?div=1");
				menu3.addItem("&nbsp;Industries", "industries.php?div=1");
				menu3.addItem("&nbsp;Projects", "projects.php?a=1&div=1");
				
				var menu4 = ms.addMenu(document.getElementById("menu4"));
				menu4.addItem("&nbsp;News & Events", "news.php?a=0");
				menu4.addItem("&nbsp;Newsletters", "newsletters.php");
				menu4.addItem("&nbsp;Business Guide", "business-guide.php"); 
				menu4.addItem("&nbsp;Brochures", "brochures.php"); 
				menu4.addItem("&nbsp;Articles", "articles.php?a=0");
				
				
				/*var menu5 = ms.addMenu(document.getElementById("menu5"));
				menu5.addItem("<span >&raquo;</span>&nbsp;Recent News", "http://www.musat.ro/news/recent-news");
				menu5.addItem("<span >&raquo;</span>&nbsp;Archive", "http://www.musat.ro/news/archive");
				
				var menu25 = ms.addMenu(document.getElementById("menu25"));
				menu25.addItem("<span >&raquo;</span>&nbsp;General Contact", "http://www.musat.ro/contact/26/General-Contact.html");
				menu25.addItem("<span >&raquo;</span>&nbsp;Direct Contact", "http://www.musat.ro/contact/27/Direct-Contact.html");*/
			
					
			
				TransMenu.renderAll();
				}
				
				ajscroller1 = new AJScroller();
				ajscroller1.height=0;
				ajscroller1.display();