/**
 * @author Eric
 */

 
ControleNavegacao = function(){
	
	var _initHandler = function(){
		
	}
	this.initHandler = _initHandler;
	
	var _go = function(where){
		
		switch(where){
			case "am":
				$('#titulo').html('Cultura Brasil');
				
				Playlist.playNow("streamingAudio", "radioam", 0, "Cultura Brasil");
				
				$('#voltar').html('');
				$('#lista').html('<img src="'+URL+'/images/ico-carregando.gif" />');
				$('#lista').load(URL+'webservice.php?module=section&folder=controle-remoto&file=list-culturabrasil');
				break;
			
			case "fm":
				$('#titulo').html('Cultura FM');
				
				Playlist.playNow("streamingAudio", "radiofm", 0, "Cultura FM");				
				$('#voltar').html('');
				$('#lista').html('<img src="'+URL+'/images/ico-carregando.gif" />');
				$('#lista').load(URL+'webservice.php?module=section&folder=controle-remoto&file=list-fm');
				break;
			
			case "saladetv":
				$('#titulo').html('Sala de TV');

				//Playlist.playNow("streamingVideo", "tv", 0, "Show da Cat Power - Virada Paulista");
				//Playlist.playNow("streamingVideo", "saladetv", 0, "TV Cultura");
				Playlist.playNow("streamingVideo", "estudioam", 0, "Sala de TV");
				
				$('#voltar').html('');
				$('#lista').html('');
				$('#lista').html('<img src="'+URL+'/images/ico-carregando.gif" />');
				$('#lista').load(URL+'webservice.php?module=section&folder=controle-remoto&file=list-saladetv');

				break;
			
			case "agenda":
				$('#titulo').html('Agenda');
				
				$('#voltar').html('');
				$('#lista').html('<img src="'+URL+'/images/ico-carregando.gif" />');
				$('#lista').load(URL+'webservice.php?module=section&folder=controle-remoto&file=list-agenda');
				break;
			
			case "playlists":
				$('#titulo').html('Playlists');
				
				$('#voltar').html('');
				$('#lista').html('<img src="'+URL+'/images/ico-carregando.gif" />');
				$('#lista').load(URL+'webservice.php?module=section&folder=controle-remoto&file=list-playlists');
				break;
			
			case "programas":
				$('#titulo').html('Programas');
				
				$('#voltar').html('');
				$('#lista').html('<img src="'+URL+'/images/ico-carregando.gif" />');
				$('#lista').load(URL+'webservice.php?module=section&folder=controle-remoto&file=list-programas');
				break;
			
			case "videos":
				$('#titulo').html('V�deos');
				
				$('#voltar').html('');
				$('#lista').html('<img src="'+URL+'/images/ico-carregando.gif" />');
				$('#lista').load(URL+'webservice.php?module=section&folder=controle-remoto&file=list-videos');
				break;
		}
		
	}
	this.go = _go;
	
	
	var _loadPrograma = function(section_id, titulo){
		$('#titulo').html(titulo);
		
		
		$('#voltar').html('<img src="/images/ico-controle-remoto-voltar.gif" onclick="javascript:ControleNavegacao.go(\'programas\');" />');
		$('#lista').html('<img src="'+URL+'/images/ico-carregando.gif" />');
		$('#lista').load(URL+'webservice.php?module=section&folder=controle-remoto&file=list-programas&template=list-playlists&programa='+section_id);
	}
	this.loadPrograma = _loadPrograma;
	
}

