diff -rup files/drupalit/drupalit.js sites/all/modules/contrib/drupalit/drupalit.js
--- files/drupalit/drupalit.js	2007-05-08 21:22:36.000000000 -0400
+++ sites/all/modules/contrib/drupalit/drupalit.js	2008-09-19 00:55:35.000000000 -0400
@@ -1,8 +1,19 @@
 // $Id: drupalit.js,v 1.3 2007/05/09 01:22:36 tic2000 Exp $
 
+Drupal.drupalit_who = function(elem) {
+  $(elem).attr('title', 'Click here to see who else voted');
+  $(elem).css('cursor', 'pointer');
+  $(elem).click(function() {
+      nid = $(this).attr('id').match(/[0-9]+$/);
+      window.location = Drupal.url('drupalit/who/'+nid);
+    });
+}
+
 Drupal.drupalit = function() {
   var dvdb = [];
   $('div.vote-wrap').each(function () {
+    $('.vote-count', this).each(function() {Drupal.drupalit_who(this);});
+    $('.vote-counted', this).each(function() {Drupal.drupalit_who(this);});
     // Read in the path to the PHP handler	
     duri = $(this).children('a').attr('href');
     // Remove the title, so no tooltip will display
@@ -40,6 +51,7 @@ Drupal.DVDB = function(delt, duri, did) 
         var dpid = 'vote-wrap-' + dcid;
         // update the points
         $('#' + dpid).html(ddata);
+        $('#' + dpid+' .vote-counted').each(function() {Drupal.drupalit_who(this);});
       },
       error: function (xmlhttp) {
         alert('An HTTP error '+ xmlhttp.status +' occured.\n'+ ddb.duri);
diff -rup files/drupalit/drupalit.module sites/all/modules/contrib/drupalit/drupalit.module
--- files/drupalit/drupalit.module	2007-07-05 18:22:52.000000000 -0400
+++ sites/all/modules/contrib/drupalit/drupalit.module	2008-09-19 00:49:21.000000000 -0400
@@ -27,6 +27,13 @@ function drupalit_menu($may_cache) {
       'access' => user_access('administer drupalit'),
       'type' => MENU_NORMAL_ITEM,
     );
+    $items[] = array(
+      'path' => 'drupalit/who',
+      'title' => t('Who voted'),
+      'callback' => 'drupalit_whovoted',
+      'access' => user_access('vote drupalit'),
+      'type' => MENU_CALLBACK,
+    );
   }
   $items[] = array(
     'path' => 'drupalit/count-vote',
@@ -395,7 +402,7 @@ function drupalit_count_vote($nid, $ajax
         db_query("INSERT INTO {drupalit_user_to_vote} (nid, uid, voted, votes, ip, daily_votes, daily_first_vote, weekly_votes, weekly_first_vote, monthly_votes, monthly_first_vote) VALUES (%d, %d, %d, %d, '%s', %d, %d, %d, %d, %d, %d)", $nid, $data['uid'], time(), $data['vote_power'], $data['ip'], $data['vote_power'], time(), $data['vote_power'], time(), $data['vote_power'], time());
       }
     }
-    print '<div class="vote-counted">'.$votes.'</div><span id="vote-text-'.$nid.'" class="voted-text">'.t('voted').'</span>';
+    print '<div id="vote-counted-' .$nid. '" class="vote-counted">'.$votes.'</div><span id="vote-text-'.$nid.'" class="voted-text">'.t('voted').'</span>';
     exit();
   }
 }
@@ -673,6 +680,31 @@ function theme_drupalit_newly_page() {
   return $output;
 }
 
+function drupalit_whovoted($nid) {
+  $node = node_load(array('nid' => $nid));
+  $title = t(variable_get('drupalit_whovoted_page_title', 'Users that voted on %title'), array('%title' => $node->title));
+  drupal_set_title($title);
+  return theme('drupalit_whovoted', $node);
+}
+
+function theme_drupalit_whovoted($node) {
+  $result = pager_query('SELECT v.uid, v.voted FROM {users} u inner join {drupalit_user_to_vote} v ON (v.uid = u.uid) where v.nid = %d ORDER BY v.voted DESC', variable_get('default_nodes_main', 10), 0, NULL, $node->nid);
+  $output = '';
+  while ($latest = db_fetch_array($result)) {
+    $account = user_load(array('uid' => $latest['uid']));
+    $data[] = array(
+                    array('data' => theme('user_picture', $account), 'style' => 'width: 75px'),
+                    theme('username', $account),
+                    format_date($latest['voted']),
+                    );
+  }
+  if ($data) {
+    $header = array(t('Picture'), t('Username'), t('Voted on'));
+    $output = theme('table', $header, $data);;
+  }
+  return $output;
+}
+
 function drupalit_statistics($order = '') {
   if ($order == 'daily') {
     $order_clause = 'dv.daily_votes';
