-1
I checked out your page and found two major HTML syntax errors:
1. Your hyperlink is not correct:
You should: <a href="...">link text</a>
instead of <a href="..." />link text</a>
2. Your ul li is not correct:
You should:
<ul>
<li>...</li> <li>...</li>
<li>...</li>
<li>...</li>
</ul>
Instead of:
<ul>
<li>
<li>...</li> <li>...</li>
<li>...</li>
<li>...</li>
</li>
</ul>
I have send you the revised menu markup by your email.