> the array is pretty much essential i think. because you have to find the > next object on the page (or the next <ul> tag). does GetElementByTag hold > all tags in an array?
You probably want to get the top-level UL tag, then getElementsByTagName
('ul'), which returns a list of some sort. It may well be an array.
Gerv
