diff --git CHANGELOG.txt CHANGELOG.txt
index f347d5d..72f4b05 100644
--- CHANGELOG.txt
+++ CHANGELOG.txt
@@ -3,6 +3,7 @@
 amazon_store-7.x-???
 [#878048] by the_g_bomb: Fix cart-add confirmation message.
 [#597362] by frando: Fix tpl.php that had functions in it.
+[#965512] by rfay: Change to new menu settings (admin/config/amazon_settings/amazon_store)
 
 amazon_store-6.x-2.0-RC2
 ------------------------
diff --git INSTALL.txt INSTALL.txt
index d77ea43..031b437 100644
--- INSTALL.txt
+++ INSTALL.txt
@@ -4,10 +4,10 @@ Installation:
 1. Install and enable the module as usual. Prerequisites include
    the Amazon module (http://drupal.org/project/amazon) and optionally
    the panels module (http://drupal.org/project/panels)
-2. Configure the various items in admin->settings->amazon. 
+2. Configure the various items in admin->config->Amazon Settings->Amazon. 
 3. Make sure you're running cron, or the store's inventory will get hopelessly out of
    date with the actual Amazon inventory.
-4. Configure the various items in admin->settings->amazon store. 
+4. Configure the various items in admin->settings->Amazon Settings->amazon store. 
 5. Optionally enable and configure the Item Page panel. A default panel is provided.
 
 
diff --git amazon_store.module amazon_store.module
index f90c9f0..6d2b86b 100644
--- amazon_store.module
+++ amazon_store.module
@@ -59,7 +59,7 @@ function amazon_store_menu() {
   );
 
 // TODO: Consider making amazon_store a tab on amazon settings
-  $items['admin/config/amazon_store'] = array(
+  $items['admin/config/amazon_settings/amazon_store'] = array(
       'title' => t('Amazon Store Settings'),
       'page callback' => 'drupal_get_form',
       'page arguments' => array('amazon_store_admin_form'),
@@ -402,7 +402,7 @@ function amazon_store_admin_form($form, &$form_state) {
   $form['amazon_store_include_categories'] = array(
       '#type' => 'checkboxes',
       '#title' => t("Categories to include in search box, category search block, etc. It's often preferable to exclude some categories"),
-      '#description' => t("Note that this list changes if you change the locale, so you will have to revisit this page after changing the locale on the <a href='!amazon_settings_url'>Amazon Module Settings</a> page.", array('!amazon_settings_url' => url('admin/config/amazon'))),
+      '#description' => t("Note that this list changes if you change the locale, so you will have to revisit this page after changing the locale on the <a href='!amazon_settings_url'>Amazon Module Settings</a> page.", array('!amazon_settings_url' => url('admin/config/amazon_settings/amazon'))),
       '#options' => $GLOBALS['amazon_store_search_indexes']->getAllCategories(),
       '#default_value' => variable_get('amazon_store_include_categories', $GLOBALS['amazon_store_search_indexes']->getRecommendedCategories()),
   );
