Index: themes/chameleon/chameleon.theme
===================================================================
RCS file: /cvs/drupal/drupal/themes/chameleon/chameleon.theme,v
retrieving revision 1.7
diff -u -r1.7 chameleon.theme
--- themes/chameleon/chameleon.theme	26 Jan 2004 19:05:21 -0000	1.7
+++ themes/chameleon/chameleon.theme	9 Feb 2004 06:58:38 -0000
@@ -97,7 +97,7 @@
 
 function chameleon_node($node, $main = 0, $page = 0) {
 
-  $output  = "<div class=\"node\">\n";
+  $output  = "<div class=\"node\" id=\"node-weight-$node->weight\">\n";
 
   if (!$page) {
     $output .= " <h2 class=\"title\">". ($main ? l($node->title, "node/view/$node->nid") : $node->title) ."</h2>\n";
Index: themes/marvin/marvin.theme
===================================================================
RCS file: /cvs/drupal/drupal/themes/marvin/marvin.theme,v
retrieving revision 1.124
diff -u -r1.124 marvin.theme
--- themes/marvin/marvin.theme	26 Jan 2004 19:05:21 -0000	1.124
+++ themes/marvin/marvin.theme	9 Feb 2004 06:58:39 -0000
@@ -103,7 +103,7 @@
 
 function marvin_node($node, $main = 0, $page = 0) {
 
-  $output = "<div class=\"node\">\n";
+  $output = "<div class=\"node\" id=\"node-weight-$node->weight\">\n";
   if (!$page) {
     $output .= "<h2 class=\"title\">". l($node->title, "node/view/$node->nid") ."</h2>\n";
   }
Index: themes/xtemplate/xtemplate.theme
===================================================================
RCS file: /cvs/drupal/drupal/themes/xtemplate/xtemplate.theme,v
retrieving revision 1.50
diff -u -r1.50 xtemplate.theme
--- themes/xtemplate/xtemplate.theme	1 Feb 2004 21:37:50 -0000	1.50
+++ themes/xtemplate/xtemplate.theme	9 Feb 2004 06:58:40 -0000
@@ -43,6 +43,7 @@
         "author"    => format_name($node),
         "date"      => format_date($node->created),
         "static"    => ($main && $node->static) ? 'static' : '',
+        "weight"    => $node->weight,
         "content"   => ($main && $node->teaser) ? $node->teaser : $node->body));
 
   if ($page == 0) {
Index: themes/xtemplate/xtemplate.xtmpl
===================================================================
RCS file: /cvs/drupal/drupal/themes/xtemplate/xtemplate.xtmpl,v
retrieving revision 1.34
diff -u -r1.34 xtemplate.xtmpl
--- themes/xtemplate/xtemplate.xtmpl	1 Feb 2004 21:37:50 -0000	1.34
+++ themes/xtemplate/xtemplate.xtmpl	9 Feb 2004 06:58:40 -0000
@@ -55,7 +55,7 @@
 <!-- END: header -->
 
 <!-- BEGIN: node -->
-  <div class="node {static}">
+  <div class="node {static}" id="node-weight-{weight}">
     <!-- BEGIN: title -->
     <h2 class="title"><a href="{link}">{title}</a></h2>
     <!-- END: title -->
