Help with a dropdown menu

Could someone please help me with this menu? It doesn’t work in IE but works in Firefox and Safari, etc…
Looks like the reset function is killing it. Any help is greatly appreciated.

http://sousou.webventions.com/index.php

Thanks E

Good grief! being stumped by the stupid stuff. Thanks E.

The contact_us part of the script has several situations where the css position contains a rogue semicolon where it shouldn’t be.

For example:


case 'contact_us': 
	hpos='-778px 0px;';
	break;

The 0px; should only be 0px
so that should instead be:


case 'contact_us': 
	hpos='-778px 0px';
	break;

There are a couple of other situations like that throughout the script that you will need to hunt down and fix as well.