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