// JavaScript Document
function abreDiv(oDiv)
{
	var aDiv = $$('.conteudo');
	
	for( var i = 0; i < aDiv.length; i++ )
	{
		oTexto = $(aDiv[i]).select('.texto');	

		divImagem = $(aDiv[i]).select('.imagem');	
		imagem = $(divImagem[0]).select('img');

		if( aDiv[i].id == oDiv )
		{
			oTexto[0].style.display = "block";
			imagem[0].src = imagem[0].src.sub('fechado', 'aberto');
		}
		else
		{
			oTexto[0].style.display = "none";
			imagem[0].src = imagem[0].src.sub('aberto', 'fechado');
		}
	}
}
