var AudioDestacado = Class.create({
	initialize: function(elemento, id) {
		this.id = id;
		this.idCapa = "audio_" + id;		
		if (elementos) {
			this.elementos = elemento;
		}
		this.pausado = true;
	},
	
	initInterfaz: function() {
		$(this.idCapa).select(".botonPlay").invoke("observe", "click", this.mostrarClick.bindAsEventListener(this));
		
		 
	},
	
	mostrarClick: function(e) {		
		this.mostrar();
	},
	
	mostrar: function() {
		var contenedorPlayer = $("reproductorAudio_"+ this.id);
		var nombrePlayer2 = "player" + this.id;			
		var player = window[nombrePlayer2]; 		
	}
	
});



