Index: apps/tagtree.c
===================================================================
--- apps/tagtree.c	(Revision 13020)
+++ apps/tagtree.c	(Arbeitskopie)
@@ -1092,7 +1092,15 @@
             dptr++;
             current_entry_count++;
         }
-        special_entry_count++;
+        if (offset <= 1)
+        {
+            dptr->newtable = navibrowse;
+            dptr->name = "<Random>";
+	     dptr->extraseek = -1;
+            dptr++;
+            current_entry_count++;
+        }
+        special_entry_count+=2;
     }
     
     total_count += special_entry_count;
@@ -1330,6 +1338,12 @@
     c->dirfull = false;
     newextra = dptr->newtable;
     seek = dptr->extraseek;
+    
+    if (seek == -1) {
+	    srand(current_tick);
+	    seek = (tagtree_get_entry(c, 2+(rand() % (c->filesindir
+			    -2))))->extraseek;  
+    }
 
     if (c->dirlevel >= MAX_DIR_LEVELS)
         return 0;
