/*
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ---- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
   Reproductor de Lista de temas
   version:  d2-m11-a11
//  -- -- -- -- -- -- -- -- --
//  Mauricio F. Tolezano (www.aquataller.es)
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ---- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
// 
//
*/


JL_reproductorLista = {		
	
	iniciar: function( reproductor, temas ) 
	{	
		// -- -- -- -- -- -- -- -- -- -- -- -- 
		
		reproductor.set_temas
		({ 
			temas				: temas.temas		,  
			ids_temas			: temas.ids_temas	,	 
			tema_inicial		: 1					, 
			play_lista			: true				
		});
	}
}



// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ---- -- -- -- -- -- -- -- -- -- -- -- -- -- --		
// Incializar 
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ---- -- -- -- -- -- -- -- -- -- -- -- -- -- --

$(function(){		
	
	JL_reproductorLista.iniciar ( JL_reproductorAudio, JL_listaReproduccion_temas );	
	
});

