Hi .. wenn du wirklich nur IE benutzt isses gar nicht mal so schwer , bei Netscape wirds 20 mal so kompliziert *g*
Nachfolgend mal ne ganz abgespeckte Version die nur
unter IE funzt , villeicht kannste was mit anfangen :)
gruss
Jens
<html>
<head>
</head>
<BODY>
<script language=JavaScript>
var LastItem = "LIST0";
function clikker(Item) {
document.all.item(LastItem).style.display ='none';
document.all.item(Item).style.display ='';
LastItem = Item
}
</script>
<table width=150><tr><td>
<DIV onClick="clikker('LIST0');">
TEST2
<DIV ID=LIST0 STYLE="display:none;" >
<A HREF="1.htm">Menu1-1</A>
<BR><A HREF="2.htm">Menu1-2</A>
<BR><A HREF="3.htm">Menu1-2</A>
</DIV>
</div>
<DIV onClick="clikker('LIST1');">
TEST2
<DIV ID=LIST1 STYLE="display:none;">
<A HREF="1.htm">Menu2-1</A>
<BR><A HREF="2.htm">Menu2-2</A>
<BR><A HREF="3.htm">Menu2-2</A>
</DIV>
</div>
<DIV onClick="clikker('LIST2');">
TEST2
<DIV ID=LIST2 STYLE="display:none;">
<A HREF="1.htm">Menu3-1</A>
<BR><A HREF="2.htm">Menu3-2</A>
<BR><A HREF="3.htm">Menu3-2</A>
</DIV>
</div>
</td></tr></table>
</body>
</html>