After a bit of fiddling around, I've discovered that the problem is not in fact with the menu itself, but just your doctype. You've declared the doctype twice, and this confuses IE - in mine it defaults to quirks mode because it doesn't know how to handle the page.
If you put it in normal mode (IE7 or IE8) it works fine.
So to fix the problem just change the top part of your page from:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<title>Self Defense and Fitness Center, RI</title>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HEAD>
<title>Self Defense and Fitness Center, RI</title>
to
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Self Defense and Fitness Center, RI</title>
This should fix your problem.
Bookmarks