you have a badly formed script tag on the page that is causeing the problem. When I view the source of the page, I see the following:
<link rel="shortcut icon" href="favicon.ico" />
<script type="text/javascript">
<!--
</script>
the unclosed comment between the empty script tag is the culpret, it should be:
[html}
<link rel="shortcut icon" href="favicon.ico" />
<script type="text/javascript">
<!--
-->
</script>
[/html]
or delete the empty script tag all together.