--- uc_product/uc_product.module	Thu May  7 15:52:29 2009
+++ uc_product/uc_product.module.new	Thu May 28 01:00:38 2009
@@ -296,6 +296,9 @@ function uc_product_theme() {
     'uc_product_model' => array(
       'arguments' => array('model' => ''),
     ),
+    'uc_product_body' => array(
+      'arguments' => array('body' => ''),
+    ),
     'uc_product_add_to_cart' => array(
       'arguments' => array('node' => NULL),
     ),
@@ -719,6 +722,8 @@ function uc_product_view($node, $teaser 
     '#weight' => $weight['display_price'],
   );
 
+  $node->content['body'] = array('#value' => theme('uc_product_body', $node->body, $teaser, $page));
+
   if (!$teaser) {
     $node->content['model'] = array('#value' => theme('uc_product_model', $node->model, $teaser, $page),
       '#access' => $enabled['model'],
@@ -1339,6 +1344,17 @@ function theme_uc_product_model($model, 
 }
 
 /**
+ * Format a product's body.
+ *
+ * @ingroup themeable
+ */
+function theme_uc_product_body($body, $teaser = 0, $page = 0) {
+  $output = '<div class="product-body">';
+  $output .= $teaser ? node_teaser($body) : $body;
+  $output .='</div>';
+  return $output;
+}
+/**
  * Wrap the "Add to Cart" form in a <div>.
  *
  * @ingroup themeable
