<!--

var overbackgroundColor="#867158";
var overtextcolor="#eeeeee";
var outbackgroundColor="#735E44";
var outtextcolor="#eeeeee";
var clickbackgroundColor="#958168";
var clicktextcolor="#eeeeee";


var linkanzahl=18; 				// letzte Linknummernummer

function load_td()
{
NeueFarbe(id2,"click") 
}

function NeueFarbe(Nr,tf)
{

if (tf=="over")
{
if(id2 != Nr)
{
document.getElementById(Nr).style.backgroundColor=overbackgroundColor;
document.getElementById(Nr).style.color=overtextcolor;
}
}

if (tf=="out")
{
if(id2 != Nr)
{
document.getElementById(Nr).style.backgroundColor=outbackgroundColor;
document.getElementById(Nr).style.color=outtextcolor;
}
}

if (tf=="click")
{
document.getElementById(Nr).style.backgroundColor=clickbackgroundColor;
document.getElementById(Nr).style.color=clicktextcolor;
for(i=1;i<Nr;i++) 
{ 
document.getElementById(i).style.backgroundColor=outbackgroundColor;
document.getElementById(i).style.color=outtextcolor;
}
for(i=linkanzahl;i>Nr;i--) 
{ 
document.getElementById(i).style.backgroundColor=outbackgroundColor;
document.getElementById(i).style.color=outtextcolor;
id2=Nr;
}
}

}

//-->