//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("home", "<img src='/images/top_nav_home.gif' width='138' height='17' border='0'>", "HOME",  "/index.htm", null);
	menu.addItem("aboutus", "<img src='/images/top_nav_aboutus.gif' width='111' height='17' border='0'>", "ABOUT US",  "/aboutus/index.htm", null);
	menu.addItem("solutions", "<img src='/images/top_nav_solutions.gif' width=121' height='17' border='0'>", "SOLUTIONS",  "/solutions/index.htm", null);
	menu.addItem("products", "<img src='/images/top_nav_products.gif' width=113' height='17' border='0'>", "PRODUCTS",  "/products/index.htm", null);
	menu.addItem("partners", "<img src='/images/top_nav_partners.gif' width='109' height='17' border='0'>", "PARTNERS",  "/partners/index.htm", null);
	menu.addItem("contactus", "<img src='/images/top_nav_contactus.gif' width='158' height='17' border='0'>", "CONTACT US",  "/contactus/index.htm", null);


	//menu.addSubItem("home", "Home", "Home",  "/index.html", "");
    //about us
	menu.addSubItem("aboutus", "Company Profile", "Company Profile",  "/aboutus/profile.htm", "");
	menu.addSubItem("aboutus", "Resolvo Culture", "Resolvo Culture",  "/aboutus/culture.htm", "");
	menu.addSubItem("aboutus", "Project Management Approach", "Project Management Approach",  "/aboutus/ria.htm", "");
	menu.addSubItem("aboutus", "Careers", "Careers",  "/aboutus/careers.htm", "");
	menu.addSubItem("aboutus", "Press Releases", "Press Releases",  "/aboutus/pressrelease.htm", "");
	menu.addSubItem("aboutus", "Photos Gallery", "Photos Gallery",  "/photos/index.htm", "");
	//menu.addSubItem("aboutus", "Locations", "Locations",  "/aboutus/locations.htm", "");	
	
    //solutions
	menu.addSubItem("solutions", "List all Solutions", "List all Solutions",  "/solutions/index.htm", "");
	menu.addSubItem("solutions", "Banking Solutions", "Banking Solutions",  "/solutions/banking/index.htm", "");
	menu.addSubItem("solutions", "Logistics Systems", "Logistics Systems",  "/solutions/logistics/index.htm", "");
	menu.addSubItem("solutions", "Telecommunications", "Telecommunications",  "/solutions/telecomm/index.htm", "");
	menu.addSubItem("solutions", "ICT Education", "ICT Education",  "/solutions/education/index.htm", "");
	menu.addSubItem("solutions", "Localization", "Localization",  "/solutions/localization/index.htm", "");
	menu.addSubItem("solutions", "Enterprise Resource Planning", "Enterprise Resource Planning",  "/solutions/resources/index.htm", "");
	menu.addSubItem("solutions", "Infrastructure & Security", "Infrastructure & Security",  "/solutions/infrastructure/index.htm", "");
	//products
	menu.addSubItem("products", "List all Products", "List all Products",  "/products/index.htm", "");
	menu.addSubItem("products", "Resolvo SalesSmart", "Resolvo SalesSmart",  "/products/salessmart/index.htm", "");
		menu.addSubItem("products", "Resolvo StockSmart", "Resolvo StockSmart",  "/products/stocksmart/index.htm", "");
	menu.addSubItem("products", "Wyse Technology- Thin Computing", "Wyse Technology- Thin Computing",  "/products/wyse/index.htm", "");
	menu.addSubItem("products", "Solar Energy System", "Solar Energy System",  "/products/solectric/index.htm", "");
	menu.addSubItem("products", "Backup", "Backup",  "/products/arkeia/index.htm", "");
	menu.addSubItem("products", "Business Performance Management", "Business Performance Management",  "/products/kpi/index.htm", "");
	menu.addSubItem("products", "Desktop Migration", "Desktop Migration",  "/products/moveover/index.htm", "");
	menu.addSubItem("products", "Domain Controller", "Domain Controller",  "/products/quro/index.htm", "");
	menu.addSubItem("products", "Mail Server", "Mail Server",  "/products/bynari/index.htm", "");
	menu.addSubItem("products", "Office Collaboration", "Office Collaboration",  "/products/weboffice/index.htm", "");


	menu.showMenu();
}