// JavaScript Document

function textstil_weg(text) {
document.getElementById(text).style.fontWeight='normal';
}


var oldobj = "";

function fett(obj)
{
if (oldobj != "")
{
oldobj.style.fontWeight="normal";
}
obj.style.fontWeight="bold";
oldobj = obj;
}







function textfarbe_weg(text) {
document.getElementById(text).style.Color='#000000';
}


var oldobj = "";

function grau(obj)
{
if (oldobj != "")
{
oldobj.style.Color="#000000";
}
obj.style.Color="#999999";
oldobj = obj;
}
