# File femto.rb, line 210
  def find_item(id)
    begin
      @store.transaction(read_only = true) do
        @store.roots.each do |section|
          if @store[section].has_key?(id)
            return @store[section][id]
          end
        end
      end
    rescue "Unknown"
    end
  end