diff -u ./node_images/node_images.module ./node_images_new/node_images.module
--- ./node_images/node_images.module	2006-12-17 18:24:40.000000000 +0100
+++ ./node_images_new/node_images.module	2007-01-03 19:24:12.000000000 +0100
@@ -485,6 +485,7 @@
 
   $output = '';
   $i = 0;
+  $img2show = variable_get('node_images_imgs2show_on_view', 1);
   foreach((array)$node->node_images as $id=>$image) {
     $description = check_plain($image->description);
     $thumb = strtr('<img src="%thumbpath" alt="%description" />',
@@ -502,7 +503,7 @@
     $i++;
     $output .= '<a href="javascript:void(0);" style="margin-right:5px;" title="'.$description.'" onclick="window.open(\''.
       file_create_url($image->filepath).'\', \'\', \'height='.$height.',width='.$width.'\');">'.$thumb.'</a>';
-    if ($i == 2) break;
+    if ($i == $img2show) break;
   }
   return $output;
 }
@@ -659,6 +660,14 @@
     '#maxlength' => 2,
     '#description' => t('The maximum number of images a user can upload for each node.'),
   );
+	$form['node_images_imgs2show_on_view'] = array(
+    '#type' => 'textfield',
+    '#title' => t('How many images to show on the node\'s view?'),
+    '#default_value' => variable_get('node_images_imgs2show_on_view', 1),
+    '#size' => 6,
+    '#maxlength' => 2,
+    '#description' => t('How many images to show on the node\'s view'),
+  );
 
   return system_settings_form($form);
 }
