	bC= null;
	
	startMenu(3, 150);
	menuItem('By Individual', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=focus-byindividual');
	menuItem('By Team', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=focus-byteam');
	menuItem('For the Organization', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=focus-fortheorganization');
	endMenu();
	
	startMenu(4, 200);
	menuItem('Assessments (Road Maps)', null, 250, '#C0CEA0', '#ffffff', 'index.php?id=services-assessments');
	menuItem('Owner\'s Manual', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=services-ownersmanual');
	menuItem('Coaching', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=services-coaching');
	menuItem('Virtual Board of Directors', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=services-vbod');
	//menuItem('More', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=services-more');
	endMenu();
	
	//startMenu(11, 150);
	//menuItem('Coach Submenu', null, null, '#C0CEA0', '#ffffff', '');
	//endMenu();
	
	startMenu(5, 200);
	menuItem('The BalancePoint Way', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=about-balancepointway');
	menuItem('The Partners', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=about-thepartners');
	menuItem('The BalancePoint Community', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=about-community');
	//menuItem('Upcoming Events!', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=about-events');
	endMenu();

// To remove an item from the menu, place a double slash ( // ) before the word 'menuitem' this will de-activate it from the menu

// To add a submenu to one of the menu's, copy and paste one of the current menu's and change the first number in the startMenu(X,YYY); entry to a unique number. X represents the ID number of the menu, and is used to refer a submenu to it's parent menu. YYY represents the width of the menu when it displays onscreen. Once the new submenu has been created, you must link it to the parent menu - put it's unique id number in the "null" spot of the parent menu and it will automatically show up as a submenu on the site.

	//startMenu(4, 200);
	//menuItem('Assessments (Road Maps)', null, 250, '#C0CEA0', '#ffffff', 'index.php?id=services-assessments');
	//menuItem('Owner\'s Manual', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=services-ownersmanual');
	//menuItem('Coaching', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=services-coaching');
	//menuItem('Virtual Board of Directors', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=services-vbod');
	//menuItem('More', null, 150, '#C0CEA0', '#ffffff', 'index.php?id=services-more');
	//endMenu();


	//startMenu(11, 150);
	//menuItem('Coach Submenu 1', null, null, '#C0CEA0', '#ffffff', '');
	//menuItem('Coach Submenu 2', null, null, '#C0CEA0', '#ffffff', '');
	//endMenu();
	
// for the example above, if I put the id number "11" in the "null" entry under coaching, it will know to use the above menu as the coaching submenu.