function auto_expire_new_menu() {
  $items = array();
  
  $items['admin/settings/auto_expire'] = array(
    'title' => 'Auto Expire Settings',
    'page callback' => 'auto_expire_new_settings_page',
    'access arguments' => array('aminister site configuration'),
    'type' => MENU_NORMAL_ITEM,
  );
  $items['auto_expire_run'] = array(
    'title' => 'Auto Expire Manual Fire',
    'page callback' => 'auto_expire_new_run',
    'access arguments' => TRUE,
    'type' => MENU_CALLBACK,
  );
  
  return $items;
}