function cor(o,n)
{
 if (n==1)
 {
  document.getElementById(o).style.backgroundColor = '2A2A2A';
  document.getElementById(o).style.cursor = 'hand';
 }
 else
  document.getElementById(o).style.backgroundColor = '';
}

