diff --git a/includes/simpleads.helper.inc b/includes/simpleads.helper.inc
index cbd3532..00006b3 100644
--- a/includes/simpleads.helper.inc
+++ b/includes/simpleads.helper.inc
@@ -161,14 +161,6 @@ function _simpleads_render_ajax_template($nodes, $tid, $limit, $settings1 = arra
 }
 
 /**
- * Helper function.
- * Return node id from arguments (used in hook_menu).
- */
-function simpleadsid_to_arg($arg) {
-  if ($arg == '%') return 'none'; else return $arg;
-}
-
-/**
  * Access callback.
  * Node Ad stats tab.
  */
diff --git a/modules/simpleads_campaigns/simpleads_campaigns.module b/modules/simpleads_campaigns/simpleads_campaigns.module
index 36fcdcb..15e454c 100644
--- a/modules/simpleads_campaigns/simpleads_campaigns.module
+++ b/modules/simpleads_campaigns/simpleads_campaigns.module
@@ -52,7 +52,7 @@ function simpleads_campaigns_menu() {
     'type' => MENU_LOCAL_TASK,
   );
 
-  $items['admin/content/simpleads_campaigns/%simpleadsid'] = array(
+  $items['admin/content/simpleads_campaigns/%'] = array(
     'title' => 'Campaign Details',
     'page callback' => '_simpleads_campaign_details',
     'page arguments' => array(3),
diff --git a/simpleads.module b/simpleads.module
index d555639..3cef985 100644
--- a/simpleads.module
+++ b/simpleads.module
@@ -46,17 +46,7 @@ function simpleads_menu() {
     'type' => MENU_CALLBACK,
   );
 
-  $items['admin/content/simpleads/%simpleadsid/stat'] = array(
-    'title' => 'Ad Statistics',
-    'page callback' => '_simpleads_stat_tab',
-    'page arguments' => array(3),
-    'access arguments' => array('access ad statistics'),
-    'weight' => 15,
-    'type' => MENU_LOCAL_TASK,
-    'file' => 'simpleads.stat.inc',
-  );
-
-  $items['node/%simpleadsid/stat'] = array(
+  $items['node/%/stat'] = array(
     'title' => 'Ad Statistics',
     'page callback' => '_simpleads_stat_tab',
     'page arguments' => array(1),
@@ -71,7 +61,13 @@ function simpleads_menu() {
     'page callback' => '_simpleads_listing',
     'access arguments' => array('access ad statistics'),
     'weight' => 15,
-    'type' => MENU_LOCAL_TASK,
+    'type' => MENU_LOCAL_TASK | MENU_NORMAL_ITEM,
+    'file' => 'simpleads.stat.inc',
+  );
+
+  $items['admin/content/simpleads/dashboard'] = array(
+    'title' => 'Ads List',
+    'type' => MENU_DEFAULT_LOCAL_TASK,
     'file' => 'simpleads.stat.inc',
   );
 
@@ -91,6 +87,16 @@ function simpleads_menu() {
     'type' => MENU_LOCAL_ACTION,
   );
 
+  $items['admin/content/simpleads/%/stat'] = array(
+    'title' => 'Ad Statistics',
+    'page callback' => '_simpleads_stat_tab',
+    'page arguments' => array(3),
+    'access arguments' => array('access ad statistics'),
+    'weight' => 15,
+    'type' => MENU_CALLBACK,
+    'file' => 'simpleads.stat.inc',
+  );
+
   $items['simpleads/redirect/%'] = array(
     'title' => 'Redirect Ads',
     'page callback' => '_simpleads_redirect',
