	function stAba(menu,conteudo)
	{
		this.menu = menu;
		this.conteudo = conteudo;
	}
 
	var arAbas = new Array();
	arAbas[0] = new stAba('td_perfil','div_perfil');
	arAbas[1] = new stAba('td_eventos','div_eventos');
	arAbas[2] = new stAba('td_fotos','div_fotos');
	arAbas[3] = new stAba('td_videos','div_videos');
 
	function AlternarAbas(menu,conteudo)
	{
		for (i=0;i<arAbas.length;i++)
		{
			m = document.getElementById(arAbas[i].menu);
			m.className = 'menu';
			c = document.getElementById(arAbas[i].conteudo)
			c.style.display = 'none';
		}
		m = document.getElementById(menu)
		m.className = 'menu-sel';
		c = document.getElementById(conteudo)
		c.style.display = '';
	}
