I have a feeling you are looking for more than this but, the way you describe it, this will work and may be all you really want (I'm no mind reader). OK, define two classes in the style section for the items you want highlighted - one for the normal state, the other for the highlighted state. These classes can be whatever you want and include whatever definitions you want but, an example is:
Code:
.anyNorm {
background:white;
}
.anyHlight {
background:lightblue;
}
Then (from your example):
HTML Code:
<a class="anyNorm" href="default2.htm" onClick="this.class='anyHlight';return dropdownmenu(this, event, menu2, '200px')" onMouseout="this.class='anyNorm';delayhidemenu()">News Sites</a>
Bookmarks