diff --git a/autologout.module b/autologout.module
index 3c22b50..ffe3a27 100644
--- a/autologout.module
+++ b/autologout.module
@@ -38,13 +38,13 @@ function autologout_menu() {
   $items['autologout_ahah_logout'] = array(
     'title' => 'JS Logout',
     'page callback' => 'autologout_ahah_logout',
-    'access callback' => '_autologout_access_ahah',
+    'access callback' => 'user_is_logged_in',
     'type' => MENU_CALLBACK
   );
   $items['autologout_ahah_set_last'] = array(
     'title' => 'JS Logout AHAH Set Last',
     'page callback' => 'autologout_ahah_set_last',
-    'access callback' => '_autologout_access_ahah',
+    'access callback' => 'user_is_logged_in',
     'type' => MENU_CALLBACK
   );
 
@@ -301,14 +301,6 @@ function _autologout_get_user_timeout() {
 }
 
 /**
- * Access callback for ahah menu items
- */
-function _autologout_access_ahah() {
-  global $user;
-  return $user->uid && user_access('access content');
-}
-
-/**
  * Helper to perform the actual logout.
  */
 function _autologout_logout() {
