--- taxi.module	2008-05-09 05:39:07.000000000 -0700
+++ /Users/jrbeeman/Projects/drupal/lrm/sites/all/modules/contrib/taxi/taxi.module	2008-05-09 09:06:24.000000000 -0700
@@ -60,6 +60,15 @@ function taxi_admin() {
     '#type' => 'checkbox',
     '#default_value' => variable_get('taxi_unset_taxonomy', TRUE),
   );
+  
+  // Weight of displayed content
+  $form['taxi_weight'] = array(
+    '#type' => 'weight',
+    '#title' => t('Display weight'),
+    '#description' => t('The position at which taxonomy data should displayed in a node.'),
+    '#default_value' => variable_get('taxi_weight', -10),
+  );
+  
 
   // Seleccion de content types
   $cttypes = node_get_types('types');
@@ -474,7 +483,7 @@ function taxi_nodeapi(&$node, $op, $a3 =
         
         // INSERTING 'taxi' object en el contenido
         $node->content['taxi']['#value'] = $taxi;
-        $node->content['taxi']['#weight'] = -10;
+        $node->content['taxi']['#weight'] = variable_get('taxi_weight', -10);
 
         break;
       }
