﻿// JScript-Datei
var activeItem = null;
function Set(item)
{
  if(activeItem)
  {
    activeItem.style.fontWeight = "";
    activeItem.style.color = "";
  }
  item.style.fontWeight = "bold";
  item.style.color = "#271DA0";
  activeItem = item;
}
