diff --git a/node_example/node_example.module b/node_example/node_example.module
index 2eaf27c..adfc1f9 100755
--- a/node_example/node_example.module
+++ b/node_example/node_example.module
@@ -147,11 +147,28 @@ function node_example_field_formatter_view($object_type, $object, $field, $insta
       }
       break;
   }
-
+  
   return $element;
 }
 
 /**
+ *Implements hook_view().
+ * 
+ * This adds a custom method for the display of the particular node_types.    
+ */
+
+function node_content_view($node,$view_mode){
+  if($view_mode == 'full'){
+    $node->content['extra'] = array(
+      '#markup' => theme('example_node_view',array('type' => $node->type,)),
+      '#weight' => -1,
+    );
+  }
+  
+  return $node;
+}
+
+/**
  * Implements hook_theme().
  *
  * This lets us tell Drupal about our theme functions and their arguments.
@@ -161,6 +178,11 @@ function node_example_theme($existing, $type, $theme, $path) {
     'example_node_color' => array(
       'variables' => array('color' => NULL),
     ),
+    'example_node_view' => array(
+      'variables' => array(
+        'type' =>NULL,
+      ),
+    ),
   );
 }
 
@@ -177,7 +199,7 @@ function node_example_help($path, $arg) {
 }
 
 /**
- * A custom theme function.
+ * The following functions are custom theme functions.
  *
  * By using this function to format our node-specific information, themes
  * can override this presentation if they wish.  This is a simplifed theme
@@ -187,6 +209,11 @@ function theme_example_node_color($variables) {
   $output = '<span style="background-color: #ccc; padding: 1em; margin-bottom: 1em; float: left; color: ' . $variables['color'] . '">' . $variables['color'] . '</span>';
   return $output;
 }
+
+function theme_example_node_view($variables){
+   $output = '<h1>'.'<em>'.$variables['type'].'</em>'.'</h1>';
+  return $output;
+}
 /**
  * @} End of "defgroup node_example".
  */
