diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index d79069bd6554d861b9a9c122f17f000399fbae95..b677d970510b4604502db9cd511f7b9184a9d09c 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -424,6 +424,11 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
         $link['style']  = '';
         $link['pre']    = '';
         $link['suf']    = '';
+        // highlight link to current page
+        if ($id == $ID) {
+	  $link['pre']    = '<strong>';
+	  $link['suf']    = '</strong>';
+	}
         $link['more']   = 'onclick="return svchk()" onkeypress="return svchk()"';
         $link['class']  = $class;
         $link['url']    = wl($id);
diff --git a/inc/template.php b/inc/template.php
index 078a62e8733ca7321c4e26a2509940e5d02314da..787730173c28820985bf60c772a77da1f92d2c42 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -351,10 +351,16 @@ function tpl_breadcrumbs(){
   if(!$conf['breadcrumbs']) return;
 
   $crumbs = breadcrumbs(); //setup crumb trace
+  //render crumbs, highlight the last one
   print $lang['breadcrumb'].':';
+  $last = count($crumbs);
+  $i = 0;
   foreach ($crumbs as $id => $name){
+    $i++;
     print ' &raquo; ';
+    if ($i == $last) print '<strong>';
     tpl_link(wl($id),$name,'class="breadcrumbs" title="'.$id.'"');
+    if ($i == $last) print '</strong>';
   }
 }