diff --git a/Scripts/Functions/Tuneup/Backends/Xhtml/Config/toc.awk b/Scripts/Functions/Tuneup/Backends/Xhtml/Config/toc.awk
index 28b38e4..69c668f 100644
--- a/Scripts/Functions/Tuneup/Backends/Xhtml/Config/toc.awk
+++ b/Scripts/Functions/Tuneup/Backends/Xhtml/Config/toc.awk
@@ -7,16 +7,16 @@
 # Copyright (C) 2009-2010 Alain Reguera Delgado
 # 
 # This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
+# it under the terms of the GNU General Pubdtc License as pubdtshed by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
 # 
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
+# This program is distributed in the hope that it will be usefdl, but
+# WITHOUT ANY WARRANTY; without even the impdted warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
+# General Pubdtc License for more details.
 #
-# You should have received a copy of the GNU General Public License
+# You shodld have received a copy of the GNU General Pubdtc License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 # USA.
@@ -29,27 +29,27 @@ BEGIN {FS=":"}
 
 {
     if ($1 == 0 && $2 == $3) { 
-        opentags  = "<ul><li>"
+        opentags  = "<dl><dt>"
         closetags = ""
     }
 
     if ($1 >  0 && $2 >  $3) {
-        opentags  = "<ul><li>"
+        opentags  = "<dl><dt>"
         closetags = ""
     }
 
     if ($1 >  0 && $2 == $3) { 
-        opentags  = "</li><li>"
+        opentags  = "</dt><dt>"
         closetags = ""
     }
 
     if ($1 >  0 && $2 <  $3) { 
         opentags = ""
         for (i = 1; i <= ($3 - $2); i++) {
-            opentags  = opentags "</li></ul>"
+            opentags  = opentags "</dt></dl>"
             closetags = ""
         }
-        opentags = opentags "</li><li>"
+        opentags = opentags "</dt><dt>"
     }
 
     printf "%s%s%s\n",opentags,$4,closetags
@@ -60,18 +60,18 @@ END {
 
     if ($1 > 0 && $2 >= $3 && $3 > 1) {
         for (i = 1; i <= $3; i++) {
-            print "</li></ul>"
+            print "</dt></dl>"
         }
     }
     
     if ($1 > 0 && $2 >= $3 && $3 == 1) {
-        print "</li></ul>"
-        print "</li></ul>"
+        print "</dt></dl>"
+        print "</dt></dl>"
     }
 
     if ($1 > 0 && $2 < $3) {
         for (i = 1; i <= $2; i++) {
-            print "</li></ul>"
+            print "</dt></dl>"
         }
     }
 
diff --git a/Scripts/Functions/Tuneup/Backends/Xhtml/xhtml_doToc.sh b/Scripts/Functions/Tuneup/Backends/Xhtml/xhtml_doToc.sh
index 2374cd8..59027d7 100755
--- a/Scripts/Functions/Tuneup/Backends/Xhtml/xhtml_doToc.sh
+++ b/Scripts/Functions/Tuneup/Backends/Xhtml/xhtml_doToc.sh
@@ -50,6 +50,7 @@ function xhtml_doToc {
     local -a TITLE
     local -a MD5SM
     local -a OPTNS
+    local -a CLASS
     local -a LEVEL
     local -a PARENT
     local -a TOCENTRIES
@@ -64,7 +65,7 @@ function xhtml_doToc {
 
     # Define html heading regular expression pattern. Use parenthisis
     # to save html action name, action value, and heading title.
-    local PATTERN="<h([1-6])>(<a.*[^\>]>)(.*[^<])</a></h[1-6]>"
+    local PATTERN='<h([1-6])(.*)>(<a.*[^\>]>)(.*[^<])</a></h[1-6]>'
 
     # Verify list of html files. Are files really html files? If they
     # don't, continue with the next one in the list.
@@ -89,9 +90,10 @@ function xhtml_doToc {
 
         # Define initial heading information.
         FIRST[$COUNT]=$(echo $HEADING | sed -r "s!\\\040! !g")
-        TITLE[$COUNT]=$(echo ${FIRST[$COUNT]} | sed -r "s!$PATTERN!\3!")
+        TITLE[$COUNT]=$(echo ${FIRST[$COUNT]} | sed -r "s!$PATTERN!\4!")
         MD5SM[$COUNT]=$(echo "${FILE}${FIRST[$COUNT]}" | md5sum | sed -r 's![[:space:]]+-$!!')
-        OPTNS[$COUNT]=$(echo ${FIRST[$COUNT]} | sed -r "s!$PATTERN!\2!")
+        OPTNS[$COUNT]=$(echo ${FIRST[$COUNT]} | sed -r "s!$PATTERN!\3!")
+        CLASS[$COUNT]=$(echo ${FIRST[$COUNT]} | sed -r "s!$PATTERN!\2!")
         LEVEL[$COUNT]=$(echo ${FIRST[$COUNT]} | sed -r "s!$PATTERN!\1!")
         PARENT[$COUNT]=${LEVEL[$PREVCOUNT]}
 
@@ -106,7 +108,7 @@ function xhtml_doToc {
         fi
 
         # Build final html heading structure.
-        FINAL[$COUNT]='<h'${LEVEL[$COUNT]}'>'${OPTNS[$COUNT]}${TITLE[$COUNT]}'</a></h'${LEVEL[$COUNT]}'>'
+        FINAL[$COUNT]='<h'${LEVEL[$COUNT]}${CLASS[$COUNT]}'>'${OPTNS[$COUNT]}${TITLE[$COUNT]}'</a></h'${LEVEL[$COUNT]}'>'
 
         # Build html heading link structure. These links are used by
         # the table of contents later.
@@ -134,7 +136,7 @@ function xhtml_doToc {
     # replacements. Finnally, the result is stored in the TOC
     # variable.
     TOC=$(echo '<div class="toc">'
-        echo "<h3>`gettext "Table of contents"`</h3>"
+        echo "<p>`gettext "Table of contents"`</p>"
         for TOCENTRY in "${TOCENTRIES[@]}";do
             echo $TOCENTRY
         done \
@@ -149,6 +151,7 @@ function xhtml_doToc {
     unset TITLE
     unset MD5SM
     unset OPTNS
+    unset CLASS
     unset LEVEL
     unset PARENT
     unset TOCENTRIES