	if (menuDropDown.isSupported()) {

		var path_root = "http://www.wild.net/";
		var ms = new menuDropDownSet(menuDropDown.direction.down, 0, 0, menuDropDown.reference.bottomLeft);
		// menu1 : About
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("Overview", path_root + "about/index.html"); 
		menu1.addItem("History", path_root + "about/history.html");
		menu1.addItem("Board Of Directors", path_root + "about/board_of_directors.html");

		// menu2 : Solutions
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Overview", path_root + "solutions/index.html");
		menu2.addItem("MGA Solution", path_root + "solutions/mga_solution.html");
		menu2.addItem("eBusiness", path_root + "solutions/ebusiness.html");
		menu2.addItem("Front Office", path_root + "solutions/front_office.html");
		menu2.addItem("Managing Excel", path_root + "solutions/manage_excel.html");

		// menu3 : Consultancy
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Overview&nbsp;&nbsp;&nbsp;&nbsp;", path_root + "services/index.html");
		menu3.addItem("K2&nbsp;&nbsp;&nbsp;&nbsp;", path_root + "services/k2.html");
		menu3.addItem("SharePoint Services&nbsp;", path_root + "services/sharepoint.html");
		menu3.addItem("Consulting&nbsp;&nbsp;&nbsp;&nbsp;", path_root + "services/consulting.html");
		menu3.addItem("Support And Hosting&nbsp;&nbsp;&nbsp;&nbsp;", path_root + "services/support_hosting.html");

		// menu4 : Careers
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Overview", path_root + "careers/index.html");

		// menu5 : Partners
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("Overview&nbsp;&nbsp;&nbsp;&nbsp;", path_root + "partners/index.html");

		// menu6 : Press- NEWS
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("Overview", path_root + "news/index.html");
		menu6.addItem("Press Releases", path_root + "news/press_releases/index.html");
		//menu6.addItem("events", path_root + "news/events.html");
		menu6.addItem("Case Studies", path_root + "news/case_studies.html");	
		
		// menu7 : Contacts
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("Overview&nbsp;&nbsp;&nbsp;&nbsp;", path_root + "contacts/index.html");
				
		menuDropDown.renderAll();
	}
