<!--

var overbackgroundColor="#dddddd";
var outbackgroundColor="#eeeeee";
var clickbackgroundColor="#cccccc";




var linkanzahl=19; 				// letzte Linknummernummer
var id2="1";					// beim laden			

function load_td()
{
NeueFarbe(id2,"click") 
}


function NeueFarbe(Nr,tf)
{

if (tf=="over")
{
if(id2 != Nr)
{
document.getElementById(Nr).style.backgroundColor=overbackgroundColor;
}
}

if (tf=="out")
{
if(id2 != Nr)
{
document.getElementById(Nr).style.backgroundColor=outbackgroundColor;
}
}

if (tf=="click")
{
document.getElementById(Nr).style.backgroundColor=clickbackgroundColor;

for(i=1;i<Nr;i++) 
{ 
document.getElementById(i).style.backgroundColor=outbackgroundColor;
}
for(i=linkanzahl;i>Nr;i--) 
{ 
document.getElementById(i).style.backgroundColor=outbackgroundColor;
}
id2=Nr;

// Werbungswechsel bei Klick
if(Nr == 6 || Nr == 7 || Nr == 9 || Nr == 10 || Nr == 11 || Nr == 12 || Nr == 14 || Nr == 15 || Nr == 16 || Nr == 17)
{
	if (document.getElementById){akauk.style.visibility="hidden";}
	if (document.getElementById){akauk.style.display="none";}
	if (document.getElementById){bawe.style.visibility="visible";}
	if (document.getElementById){bawe.style.display="";}
}
else
{
	if (document.getElementById){akauk.style.visibility="visible";}
	if (document.getElementById){akauk.style.display="";}
	if (document.getElementById){bawe.style.visibility="hidden";}
	if (document.getElementById){bawe.style.display="none";}
}
// Ende Werbungswechsel bei Klick


}


}

//-->
