arthur, There are really only two ways I can think of, and one might be unrealistic. The easiest is to create 2 small images of a plus and minus. Stick the plus image in front of all the Links, and when the style property is changed to block, change the image src to the minus.
The other is putting a text-box in front of the links. Make it locked (so user can't edit it), and make the background transparent. Then same as above, just change the value of the box. The advantage is that you won't have images. The problem is that it's more code, and I'm not sure how easily it can be done.
amv, try using CSS for all formatting, it's easier, and you can get the same effect. Here's how:
Code:
.submenu a:link{
display:list-item;
list-style:circle;
}
Add that beneath .submenu, remove all <br>'s from behind the </a>'s, and try that.
Bookmarks