function partners_menu($may_cache) {
	//$items = array();
	$access_config = user_access('administer site configuration');
	$access_content = user_access('access content');
	if ($may_cache) {
		$items[] = array(
			'path' => 'admin/settings/partners',
			'title' => t('Partners'),
			'description' => t('Adjust the FCBH Partners settings.'),
			'callback' => 'partners_admin',
			'access' => $access_config,
		);
		$items[] = array(
			'path' => 'admin/settings/partners/settings',
			'title' => t('Global Settings'),
			'type' => MENU_DEFAULT_LOCAL_TASK,
		);
		$items[] = array(
			'path' => 'admin/settings/partners/partners',
			'title' => t('Partners'),
			'type' => MENU_LOCAL_TASK,
		);
		$items[] = array(
			'path' => 'admin/settings/partners/messages',
			'title' => t('Messaging'),
			'type' => MENU_LOCAL_TASK,
			'weight' => 1,
		);
		$items[] = array(
			'path' => 'members/register',
			'title' => t('Member Registration'),
			'description' => t('This is the default registration page'),
			'callback' => 'partners_public',
			'access' => user_access('access content'),
			'type' => MENU_CALLBACK
		);
	}
	return $items;
}