function obtiene_seccion()
{
  var path = document.location.pathname;
  var seccion = path.replace(".html", "");
  seccion = seccion.replace("/","");
  return seccion ? seccion : "inicio";
}
function marca_menu(seccion)
{
  var seccion = obtiene_seccion();
  if(document.getElementById("M#"+seccion)){ document.getElementById("M#"+seccion).style.backgroundColor="#FFFFFF"; }
}
