function sel(el, sopra)
{
if (sopra)
  {
  el.style.backgroundColor = '#954a00';
  el.style.color = 'white';
  el.style.cursor = 'hand';
  }
else
  {
  el.style.backgroundColor = 'black';
  el.style.color = 'white';
  el.style.cursor = '';
  }
}

function selg(el, sopra)
{
if (sopra)
  {
  el.style.backgroundColor = '#954a00';
  el.style.color = 'white';
  el.style.cursor = 'hand';
  }
else
  {
  el.style.backgroundColor = '#AC0A29';
  el.style.color = 'white';
  el.style.cursor = '';
  }
}

