Menu Problems IE

Hello,

I’m building a website, and the drop-down menu system will not work in Internet Explorer.

I have a rough version online for testing purposes, here is a link to it: Ryoku Seikido - Home

Any ideas?

The IE error occurs when attempting to set the top style.


c.style.position   = "absolute";
[color="red"]c.style.top        = 'px';[/color]
c.style.left       = 'px';
c.style.visibility = "visible";

because ‘px’ is an invalid argument. It should be a number followed by px, for example:


c.style.top        = top + 'px';