diff --git a/recipe.module b/recipe.module
index dc514a9..1421bf2 100644
--- a/recipe.module
+++ b/recipe.module
@@ -23,6 +23,9 @@ function recipe_help($path, $arg) {
     case 'admin/content/recipe/import_multi':
       $output = '<p>' . t('You can enable/disable bulk import formats on the <a href="@modules-page">modules page</a> in the recipes section.', array('@modules-page' => url('admin/build/modules'))) . '</p>';
       return $output;
+    case 'admin/config/content/recipe':
+    case 'admin/help#recipe':
+      return t('Configure the management and display of recipes.');
   }
 }
 
@@ -630,20 +633,24 @@ function recipe_menu() {
 
 
   // Admin menus below here.
-  $items['admin/content/recipe'] = array(
-    'title' => 'Recipes',
-    'description' => 'Settings that control how the recipe module functions.',
+  $items['admin/config/content/recipe'] = array(
+    'title' => 'Recipe',
+    'description' => 'Configure the creation and display of recipes.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('recipe_admin_settings'),
+    'access arguments' => array('administer site configuration'), 
+    'file' => 'recipe.admin.inc',
+  );
+
+  $items['admin/content/recipe'] = array(
+    'title' => 'Recipes',
+    'description' => 'Import/Export of Recipes.',
+    'page callback' => 'recipe_import_multi',
+    'access callback' => 'recipe_import_multi_myaccess',
     'access arguments' => array('administer site configuration'),
     'type' => MENU_LOCAL_TASK | MENU_NORMAL_ITEM,
     'file' => 'recipe.admin.inc',
   );
-  $items['admin/content/recipe/settings'] = array(
-    'title' => 'Settings',
-    'type' => MENU_DEFAULT_LOCAL_TASK,
-    'weight' => -1,
-  );
   $items['admin/content/recipe/export_multi'] = array(
     'title' => 'Bulk export',
     'description' => 'Export all recipes from this site into a supported output format.  The data is returned directly to your web browser.  You can enable output formats on the modules screen.',
