function over_me(o) {
  o.zaloha_bg = o.style.backgroundColor;
  o.style.backgroundColor = '#888';
}

function out_me(o) {
  o.style.backgroundColor = o.zaloha_bg;
}

function show(no) {
  obj = document.getElementById("sd_" + no);
  if (obj) {
    obj.style.display = "block";
  }
}

function hide(no) {
  obj = document.getElementById("sd_" + no);
  if (obj) {
    obj.style.display = "none";
  }
}

