<!--
// preklapecka
function SetColor(f, act)
  {
  var clr1="#fff";
  var clr2="#D5D5D5";
  if(typeof(document.getElementsByTagName)!='undefined')
    {
    if(act=='ovr') SetCurrColor(f.getElementsByTagName('div'), clr2)
    else SetCurrColor(f.getElementsByTagName('div'), clr1)
    }
  }

function SetCurrColor(obj, clr)
  {
  if(obj[0])obj[0].style.backgroundColor=clr;
  if(obj[1])obj[1].style.backgroundColor=clr;
  if(obj[2])obj[2].style.backgroundColor=clr;
  if(obj[3])obj[3].style.backgroundColor=clr;
  if(obj[4])obj[4].style.backgroundColor=clr;
  }
// -->

