IE Menu Problem...
Originally, I included CSS hacks for IE.
However, my comments before the doctype was the reason IE was running in non-strict mode.  I did not know this.
When Chris removed the comments, IE correctly went into strict mode and my IE hacks were no longer needed (the hacks were getting in the way now).
solution:
*) Make sure doctype is first on all files
*) removed all IE hacks from menu.css (since the doctype issue fixes IE)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45025 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/www/index.html b/www/index.html
index 647b768..4fa9d61 100644
--- a/www/index.html
+++ b/www/index.html
@@ -1,6 +1,6 @@
-<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->

 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 

           "http://www.w3.org/TR/html4/strict.dtd">

+<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->

 <html>

 <head>

   <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />