//menu objects

function onLoad() {
    window.onResize = onLoad;
    loadMenus();
}

function loadMenus () {
  
   
    window.menu2 = new Menu("Consulting Services");
    menu2.addMenuItem("Business Process Reengineering & Industrial Process Improvement", "top.window.frames[2].location='busproc.htm'");
    menu2.addMenuItem("Organizational Improvement & Change Managment", "top.window.frames[2].location='orgchg.htm'");
    menu2.addMenuItem("Information Systems Integration", "top.window.frames[2].location='infosys.htm'");
	menu2.addMenuItem("Facilities Planning & Operations Improvement", "top.window.frames[2].location='facop.htm'");
	menu2.addMenuItem("Performance Measurement & Targeting", "top.window.frames[2].location='perform.htm'");
	menu2.addMenuItem("Multi-Dimensional Improvement", "top.window.frames[2].location='multi.htm'");
	menu2.addMenuItem("Typical Projects", "top.window.frames[2].location='typroj.htm'");
	menu2.addMenuItem("Systematic Methods", "top.window.frames[2].location='sysmeth.htm'");
	menu2.addMenuItem("How We Work", "top.window.frames[2].location='howwe.htm'");	
    menu2.menuHiliteBgColor = "990000";
	
	
	
    window.menu1 = new Menu("About Us");
    menu1.addMenuItem("How Clients Benefit", "top.window.frames[2].location='about_how_clients_benefit.htm'");
    menu1.addMenuItem("How Can We Help", "top.window.frames[2].location='about_how_we_help.htm'");
    menu1.menuHiliteBgColor = "990000";

    menu1.writeMenus();
}

