--- vote_up_down.module	2007-11-18 23:32:27.000000000 -0800
+++ vote_up_down.module	2008-07-10 23:29:00.000000000 -0700
@@ -160,21 +160,23 @@ function vote_up_down_menu($may_cache) {
       'access' => user_access('use up-down vote'),
       'type' => MENU_CALLBACK
     );
-  }
-  else {
     $items[] = array(
       'path' => 'voteupdown',
       'title' => t('Vote up/down'),
       'description' => t('Vote up/down vote summaries.'),
       'callback' => 'vote_up_down_page',
       'access' => user_access('access up-down vote statistic'),
+      'type' => MENU_SUGGESTED_ITEM,
     );
     $items[] = array(
       'path' => 'voteupdown/usersvotes',
       'title' => t('Users by votes'),
       'callback' => 'vote_up_down_page',
       'access' => user_access('access up-down vote statistic'),
+      'type' => MENU_SUGGESTED_ITEM,
     );
+  }
+  else {
     if (arg(0) == 'node' && is_numeric(arg(1))) {
       $node = node_load(arg(1));
       $vote_access = (user_access('access up-down vote statistic') && in_array($node->type, variable_get('vote_up_down_node_types', array()), TRUE));
