function IdiomaManager()
{
	this.idioma;
	
	this.tabPlayer;
	this.tabNoticias;
	this.tabExplorar;
	this.tabVideo;
	
	this.lr;
	this.libreria;
	
	this.nombre;
	this.artista;
	this.album;	
	
	this.comentarios;
	this.agComentario;
	
	this.masInfo;
	
	this.crearTextos = function()
	{
		if(this.idioma == "es")
		{
			this.crearEs();
		}
		else if(this.idioma == "en")
		{
			this.crearEn();
		}
		else
		{
			this.idioma = "es";
			this.crearEs();
		}
	}
	
	this.crearEs = function()
	{
		this.tabPlayer = "Player";
		this.tabNoticias = "Noticias";		
		this.tabExplorar = "Explorar";
		this.tabVideo = "Video";
		
		this.lr = "LISTAS DE REPRODUCCION";
		this.libreria = "LIBRERIA";
		
		this.nombre = "Nombre";
		this.artista = "Artista";
		this.album = "Album";		
		
		this.comentarios = "Comentarios";
		this.agComentario = "+ Agregar Comentario";	
		
		this.masInfo = "+ m&aacute;s info";
	}
	
	this.crearEn = function()
	{
		this.tabPlayer = "Player";
		this.tabNoticias = "News";		
		this.tabExplorar = "Explore";
		this.tabVideo = "Video";
		
		this.lr = "PLAYLISTS";
		this.libreria = "LIBRARY";
		
		this.nombre = "Name";
		this.artista = "Artist";
		this.album = "Album";		
		
		this.comentarios = "Comments";
		this.agComentario = "+ Add Comment";	
		
		this.masInfo = "+ more info";
	}
	
}
