ok, i'm having a crappy javascript problem.
I have a part of the script that looks like this:
var submenu = document.getElementById('SubMenu'+id);
(id is a string)
It works fine in opera, but firefox and IE don't like it.
It used to be this, but opera and IE didn't like it, only firefox understood it.
var submenu = menus.getElementsByTagName('ul').items('Menu'+id)
ANd, finally, IE only understands it when id is a number rather than an integer, and it's like this:
var submenu = menus.getElementsByTagName('ul').items(id)
