$(function(){
//	CRIA TITULO
	var titulo01 = $('h3#titulo01');
	var titulo1 = new Titulo( titulo01[0], titulo01.html(), 'b7b8b7', "18", "false", "none", 350, 23, '' );
	
	
	// TIRA AS BORDAS DOS ELEMENTOS IMPARES DA LISTA 
	$('div.textosSecundarios li:even').css('border','none');
	$('div.textosSecundarios li:odd').addClass('itemPar');

	// MOSTRA O CONTEUDO SELECIONADO NO SELECT
	$('div#informacoesContato select').change( function(){
		var selecionaTexto = this.options[ this.selectedIndex ].value;
		if ( selecionaTexto != 0 )
			$( 'div#recebeTexto' ).load( selecionaTexto )
		else
			$( 'div#recebeTexto' ).html('');
	});
});
