Index: autocomplete_node_finder.module
===================================================================
--- autocomplete_node_finder.module	(revision 101)
+++ autocomplete_node_finder.module	(working copy)
@@ -64,7 +64,7 @@
       'arguments' => array('delta' => NULL, 'nids' => NULL, 'form_state' => NULL),
     ),
     'autocomplete_node_finder_suggestion' => array(
-      'arguments' => array('match' => NULL),
+      'arguments' => array('match' => NULL, 'delta' => NULL),
     ),
   );
 }
@@ -133,7 +133,7 @@
         }
       }
     }
-    $matches[$match['field']] = $match['field'];
+    $matches[$match['field']] = theme('autocomplete_node_finder_suggestion', $match, $delta);
   }
 
   print drupal_to_js($matches);
@@ -1000,14 +1000,14 @@
           foreach ($dsv_parts as $dsv_part) {
             $row['field'] = trim($dsv_part);
             $row['form'] = 'select';
-            $output = theme('autocomplete_node_finder_suggestion', $row);
+            $output = theme('autocomplete_node_finder_suggestion', $row, $delta);
             if ($output) {
               $options[$row['field']] = $output;
             }
           }
         }
         else {
-          $output = theme('autocomplete_node_finder_suggestion', $row);
+          $output = theme('autocomplete_node_finder_suggestion', $row, $delta);
           if ($output) {
             $options[$row['field']] = $output;
           }
@@ -1172,7 +1172,7 @@
  * Theme a suggestion.  Return null/false to exclude suggestion.
  */
 
-function theme_autocomplete_node_finder_suggestion($match) {
+function theme_autocomplete_node_finder_suggestion($match, $delta) {
   $output = ($match['hyphens'] ? $match['$hyphens'] .' ' : '') . $match['field'];
   /*
   Example of how to display complicated autocomplete options
