// JavaScript Document
var last_index = null;

function mostrar_noticia( index )
{
	if ( document.getElementById( 'noticia_resumo_' + index ).className == 'noticia_texto' )
	{
		document.getElementById( 'noticia_resumo_' + index ).className = 'div_escondido';
		document.getElementById( 'noticia_corpo_' + index ).className = 'noticia_texto';
	}
	else
	{
		document.getElementById( 'noticia_corpo_' + index ).className = 'div_escondido';
		document.getElementById( 'noticia_resumo_' + index ).className = 'noticia_texto';
	}

	if ( last_index ) 
		if ( last_index != index )
		{
			document.getElementById( 'noticia_corpo_' + last_index ).className = 'div_escondido';
			document.getElementById( 'noticia_resumo_' + last_index ).className = 'noticia_texto';
		}
	last_index = index;
}