
function Pestanyas() {
	this.prefijoCapa = "contenido_";
	this.prefijoBoton = "boton_";
	this.ids = {};
	this.CLASE_ACTIVO = "activo";
	
	this.show = function(id) {
		this.hideAll();
		document.getElementById(this.prefijoCapa + id).style.display = "";
		document.getElementById(this.prefijoBoton + id).className = this.CLASE_ACTIVO;
	};
	
	this.hide = function(id) {
		document.getElementById(this.prefijoCapa + id).style.display = "none";
		document.getElementById(this.prefijoBoton + id).className = "";
	};
	
	this.hideAll = function() {
		var mapa = this.ids;
		for (var i in mapa) {
			try {
				this.hide(i);
			} catch (e) {
			}
		}
	}
}