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