diff --git a/nodereview.module b/nodereview.module
index f65b26f..199f407 100755
--- a/nodereview.info
+++ b/nodereview.info
@@ -8,7 +8,7 @@ package = Voting
 dependencies[] = votingapi
 dependencies[] = views
 
-configure = admin/config/nodereview/types
+configure = admin/config/content/nodereview/types
 
 files[] = views/nodereview.views.inc
 files[] = views/nodereview.views_default.inc
--- a/nodereview.module
+++ b/nodereview.module
@@ -85,7 +85,7 @@ function nodereview_permission() {
 function nodereview_menu() {
   $items = array();
 
-  $items['admin/config/nodereview'] = array(
+  $items['admin/config/content/nodereview'] = array(
     'title' => 'Review types',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('nodereview_configure'),
@@ -94,7 +94,7 @@ function nodereview_menu() {
     'description' => 'Configure the axes for node type review',
   );
 
-  $items['admin/config/nodereview/types'] = array(
+  $items['admin/config/content/nodereview/types'] = array(
     'title' => 'List',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('nodereview_configure'),
@@ -108,7 +108,7 @@ function nodereview_menu() {
   // It's slow to put this here, as it should go in
   foreach (node_type_get_types() as $type => $info) {
     if (variable_get('nodereview_use_' . $type, 0)) {
-      $items['admin/config/nodereview/' . $type] = array(
+      $items['admin/config/content/nodereview/' . $type] = array(
         'title callback' => 'check_plain',
         'title arguments' => array($info->name),
         'page callback' => 'drupal_get_form',
