var seccionAbierta="home";
var hashReciente = "";


function cambiarDesdeURL() {
	if (window.location.hash==hashReciente) {
		return; // No cambio nada
     }
     hashReciente = window.location.hash;
    // cargaSubSeccion(hashReciente.replace(/#/g,''));
}

function actualizaHash(__seccion) {
	window.location.hash = "#/"+__seccion+"/";
	hashReciente = window.location.hash;
}