diff --git a/includes/easy_breadcrumb.blocks.inc b/includes/easy_breadcrumb.blocks.inc
index c46683f..a2d5225 100644
--- a/includes/easy_breadcrumb.blocks.inc
+++ b/includes/easy_breadcrumb.blocks.inc
@@ -92,6 +92,11 @@ function _easy_breadcrumb_block() {
       // Only adds the segment as link if its URL really exists; adds it as text
       // otherwise (if configured for doing so).
       if ($valid_path) {
+        //Get title of node if avilable
+        $node = menu_get_object('node', 1, drupal_get_normal_path($segment_url));
+        if(is_object($node) && property_exists($node, 'title')) {
+          $segment_text = $node->title;
+        }
 
         // Adds the segment to the breadcrumb.
         $breadcrumb[] = l($segment_text, $segment_url, array(
