
{

// AddItem(id, text, hint, location, alternativeLocation);

// AddSubItem(idParent, text, hint, location, linktarget);

	

menu = new Menu();
	

//Add the top of the menus
menu.addItem("homeid", "Home", "Home Page","contents.html",null);
	
menu.addItem("aboutid", "About Us", "About the corporate",  null, null);

menu.addItem("deliveryid", "Our Delivery Model", "Our Delivery Model",null, null);

menu.addItem("customersid", "Customers", "Customers", null, null);

menu.addItem("differenceid", "Why BuPro?", "Bupro's Difference",null, null);

menu.addItem("careerid", "Careers", "Careers","careers.html", null);

menu.addItem("contactusid", "Contact us", "Contact Us",  "contact.html", null);

menu.addItem("faqid", "FAQ", "FAQ",  "faq.html", null);


//Add the subItems of the menu
//for about the corporate
menu.addSubItem("aboutid", "Company", "The Company","company.html", "");
menu.addSubItem("aboutid", "Promoters", "Promoters","company.html", "");
menu.addSubItem("aboutid", "Our Mission", "mission","mission.html", "");
menu.addSubItem("aboutid", "Our Vision", "vision","vision.html", "");
menu.addSubItem("aboutid", "Our Services", "Services of the company","services.html", "");
menu.addSubItem("aboutid", "Market", "The market", "Market.html", "");
menu.addSubItem("aboutid", "People", "The market", "people.html", "");
menu.addSubItem("aboutid", "Ethics", "Ethics", "Ethics.html", "");

//Add the subItems of the menu
//for delivery model
menu.addSubItem("deliveryid", "Workflow", "Workflow Management","workflow.html", "");
menu.addSubItem("deliveryid", "Engagement", "Engagement Process","engagement.html", "");
menu.addSubItem("deliveryid", "Infrastructure", "infrastructure","infrastructure.html", "");
menu.addSubItem("deliveryid", "HR & Training", "Human Resources & Training","training.html", "");
menu.addSubItem("deliveryid", "Technology", "Infrastructure Technology","technology.html", "");
menu.addSubItem("deliveryid", "Security", "Infrastructure Security","security.html", "");
menu.addSubItem("deliveryid", "QMS", "Infrastructure QMS","qms.html", "");

//Add the subItems of the menu
//for delivery model
menu.addSubItem("customersid", "Key Customers", "Key Customers","keycustomers.htm", "");
menu.addSubItem("customersid", "Case Studies", "case studies","casestudy.html", "");


//Add the subItems of the menu
//for differnce model
//menu.addSubItem("differenceid", "People", "The People","process.html", "");
//menu.addSubItem("differenceid", "Process", "The Process","process.html", "");
menu.addSubItem("differenceid", "The BuPro Difference", "Process, People & Technology","process.html", "");
menu.addSubItem("differenceid", "The Equation", "The Equation","equation.html", "");

menu.showMenu();

}

