// JavaScript Document
function despliegaActual () {
	
	var l = location.pathname;
	var el = document.getElementById(l.substr(0, l.lastIndexOf("/")));
	//alert(el.style.display);
	if (el) el.style.display = "block";
}

// Set-up
despliegaActual();

