

function cambiaClasse(id){
var section = document.getElementById(id);
section.className="active";
}


