Nice work on the website! The logo is also excellent, I like the concept.
I quickly glanced at the source of the main page. You might want to change these pieces of code:
<SCRIPT LANGUAGE="JavaScript">
/* snip */
</SCRIPT>
(on lines 37 and pectively) to these:
<script type="text/javascript">
/* snip */
</script>
if you want the site to be valid XHTML strict.
There's also a bunch of other errors like improper capitalisation (tags and attributes are lowercase in XHTML), image tags that aren't closed (in XHTML it's
not
) and some missing or invalid attributes (like border, target, align that don't exist in XHTML, or onMouseOut, HREF and others that are also improperly capitalised).
Just thought I'd mention these. The site itself looks very nice.