function abreConteudo(numero){
	document.getElementById('conteudo'+numero).style.display = (document.getElementById('conteudo'+numero).style.display == 'none') ? '' : 'none';
	
	
	
		var botao=document.getElementById("resposta"+numero);
		
		if(document.getElementById('conteudo'+numero).style.display == "none")
{
	botao.value = "Ver »";
}
else
{
botao.value = "« Ocultar";
}
	
}


function getById(elemento){return document.getElementById(elemento);}
 
function m(div){
	var texto = getById(div);
	var botao = getById("vj-"+div);
	
	if(texto.style.display != 'block'){
		texto.style.display = 'block';
		botao.style.display = 'none';
	}
}
 
function e(div){
	var texto = getById(div);
	var botao = getById("vj-"+div);
	
	if(texto.style.display != 'none'){
		texto.style.display = 'none';
		botao.style.display = 'inline';
	}
}




