Hallo,
dies ist in einem framset der obere und dort ist eine buttonleiste wo bei mouseover eine layer balken etwas tiefer angezeigt wird und auf diesem die buttons wechseln und die farbe des balkens ebenfalls
hier ist das originalscript ohne änderungen vielleicht hilft es mehr als nur der ausschnitt der funktion
im vorraus danke
detlef
<SCRIPT LANGUAGE="JavaScript">
var alter=1;
var anzahl=new Array(10);
anzahl[0]=3;
anzahl[1]=1;
anzahl[2]=3;
anzahl[3]=1;
anzahl[4]=2;
anzahl[5]=1;
anzahl[6]=2;
anzahl[7]=2;
anzahl[8]=1;
anzahl[9]=3;
function wechsel(a)
{
if(a!=alter)
{
parent.balken.wechsel(a);
if(document.layers)
{
document.eval("hint2"+a).visibility="show";
document.eval("pfeil"+a).visibility="show";
document.eval("hint2"+alter).visibility="hide";
document.eval("pfeil"+alter).visibility="hide";
for(i=1;anzahl[a-1]+1>i;i++)
{
document.eval("text"+a+i).visibility="show";
}
for(i=1;i<anzahl[alter-1]+1;i++)
{
document.eval("text"+alter+i).visibility="hide";
}
alter=a;
}
else
{
eval("hint2"+a).style.visibility="visible";
eval("pfeil"+a).style.visibility="visible";
eval("hint2"+alter).style.visibility="hidden";
eval("pfeil"+alter).style.visibility="hidden";
for(i=1;anzahl[a-1]+1>i;i++)
{
eval("text"+a+i).style.visibility="visible";
}
for(i=1;i<anzahl[alter-1]+1;i++)
{
eval("text"+alter+i).style.visibility="hidden";
}
alter=a;
}}}
</SCRIPT>