*** empty log message ***
diff --git a/minutes/2006.01.23.html b/minutes/2006.01.23.html
index d27ab35..b087fa4 100644
--- a/minutes/2006.01.23.html
+++ b/minutes/2006.01.23.html
@@ -1,5 +1,6 @@
 
-<h1>PMC Minutes January 23, 2006</h1>
+<h1>miscellaneous</h1>
+<h2>PMC Minutes January 23, 2006</h2>
 <div align="center">
   <center>
   <table border="0" cellspacing="3">
diff --git a/minutes/2006.01.30.html b/minutes/2006.01.30.html
index e4114e9..419c8cc 100644
--- a/minutes/2006.01.30.html
+++ b/minutes/2006.01.30.html
@@ -1,5 +1,6 @@
 
-<h1>PMC Minutes January 30, 2006</h1>
+<h1>VTP</h1>
+<h2>PMC Minutes January 30, 2006</h2>
 <div align="center">
   <center>
   <table border="0" cellspacing="3">
diff --git a/minutes/2006.02.06.html b/minutes/2006.02.06.html
index e9f5b31..48a94c2 100644
--- a/minutes/2006.02.06.html
+++ b/minutes/2006.02.06.html
@@ -1,5 +1,5 @@
-
-<h1>PMC Minutes February 6, 2006</h1>
+<h1>Brian resigns, VTP, IDE for Laszlo</h1>
+<h2>PMC Minutes February 6, 2006</h2>
 <div align="center">
   <center>
   <table border="0" cellspacing="3">
diff --git a/pmc-minutes.php b/pmc-minutes.php
index fe083f3..97d1a29 100644
--- a/pmc-minutes.php
+++ b/pmc-minutes.php
@@ -59,7 +59,10 @@
     	         $d = $matches[3];
 				 $key = $y . "." . $m . "." . $d;
 	             $m = $months[$m];
-	             echo "<li><a href=\"pmc-minutes.php?key=$key\">$m, $d $y</a></li>\n";
+				  $contents = file_get_contents( "minutes/" . $key . ".html" );
+				  preg_match( "/<h1>(.*)<\/h1>/", $contents, $matches );
+				  $subject = $matches[1];
+	             echo "<li><a href=\"pmc-minutes.php?key=$key\">$m, $d $y - $subject</a></li>\n";
             }
        }
        closedir($dh);