
	function toggleDir(idCapa, idRotulo) {
		var laCapa = document.getElementById(idCapa);

//		Cerramos las capas que no se hayan pulsado

		var divDir = document.getElementById('dir');
		var dirs = divDir.getElementsByTagName('div')

		for (i=0; i<dirs.length ; i++) {
			valDiv = dirs[i].id;
			if (valDiv != idCapa) {
				var capaDir = document.getElementById(valDiv);
				capaDir.style.position = 'absolute';
				capaDir.style.left = '-4000px';
			}
		}

//		Fin cierre capas

		if (laCapa.style.position == 'absolute') {
			laCapa.style.position = 'relative';
			laCapa.style.left = '0';

		} else {
			laCapa.style.position = 'absolute';
			laCapa.style.left = '-4000px';
		}

//		var elRotulo = document.getElementById(idRotulo);

//		if (laCapa.style.position == 'absolute') {
//			elRotulo.style.backgroundImage = 'url(img/bg_dir_dw.png)';
//		} else {
//			elRotulo.style.backgroundImage = 'url(img/bg_dir_up.png)';
//		}
	}


