diff --git a/userqueue.module b/userqueue.module
index f257b02..df77fc8 100644
--- a/userqueue.module
+++ b/userqueue.module
@@ -159,7 +159,7 @@ function theme_userqueue_arrange_subqueue_form_table($variables) {
   }
 
   // render the main userqueue table
-  $header = array(t('Title'), t('Created'), t('Position'), array('data' => t('Operations'), 'colspan' => 2), t('Position'));
+  $header = array(t('Photo'),t('Title'), t('Created'), t('Position'), array('data' => t('Operations'), 'colspan' => 2), t('Position'));
   $output .= theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => array('id' => array('userqueue-dragdrop'), 'class' => array('userqueue-dragdrop'))));
 
   return $output;
diff --git a/userqueue.pages.inc b/userqueue.pages.inc
index 4663414..72ca8a3 100644
--- a/userqueue.pages.inc
+++ b/userqueue.pages.inc
@@ -34,6 +34,15 @@ function userqueue_arrange_subqueue_form($form, $form_state, $queue, $users) {
   // Theme function needs these.
   $form['users']['#queue'] = (array) $queue;
   foreach ($users as $account) {
+
+
+    if(isset($account->picture->uri) == TRUE)
+	{
+		$path = image_style_url("thumbnail",$account->picture->uri);
+	}
+    else
+	$path = "No Image";
+    $form['users'][$account->uid]['photo'] = array('#markup' => theme('image', array('path' => $path)));	
     $form['users'][$account->uid]['#user'] = (array) $account;
     $form['users'][$account->uid]['title'] = array('#markup' => theme('username', array('account' => $account)));
     $form['users'][$account->uid]['date'] = array(
