actual = "";


function oscurecer(bg_color,elemento) {
  if (actual != elemento) {
    document.getElementById(elemento).style.background=bg_color;
    document.getElementById("link_"+ elemento).style.color='white';
  }
}



function aclarar(elemento) {
  if (actual != elemento) {
    document.getElementById(elemento).style.background='white';
    document.getElementById("link_"+ elemento).style.color='black';
  }
}


function grisear(elemento) {
  if (actual != elemento) {
    document.getElementById(elemento).style.background='#efefef';
    document.getElementById("link_"+ elemento).style.color='black';
  }
}

function oscurecerGris(bg_color,elemento) {
  if (actual != elemento) {
    document.getElementById(elemento).style.background=bg_color;
    document.getElementById("link_"+ elemento).style.color='#efefef';
  }
}


