var MAPA = {
	
	inicializa : function() {
		var enlaces = document.getElementById('principal').getElementsByTagName('a');
		for (i=0;i<enlaces.length;i++) {
			if (enlaces[i].parentNode.nodeName == 'LI') {
				enlaces[i].onclick = function() {
					MAPA.informacion(this);
					return false;
				}
			}
		}
	},
	
	informacion : function(cual) {
		var numero = cual.parentNode.className.split('-')[1];
		var calle = cual.parentNode.parentNode.id;
		var centros = document.getElementById('principal').getElementsByTagName('div');
		for (j=0;j<centros.length;j++) {
			if ((centros[j].id.indexOf(calle) != -1) && (centros[j].id.indexOf(numero) != -1))
				document.getElementById('principal').className = centros[j].id;
		}
	}
	
}




addLoadEvent(function() {
	MAPA.inicializa();
});
