jQuery(document).ready(function($){

	// Mostrar a janela de newsletter ao clicar no link do rodape
	$('.rodape').find('.assine_news').click(function(evento){
		$('#box_assine_news').show();
		evento.preventDefault();
	});
	
	
	
	
	
	
	
	
	// Mostrar imagem ao clicar em miniatura - Historia > Linha do Tempo
	$( '#linha-tempo .mais-multimidia img' ).click(function(){
		split = $(this).attr('src').split( 'thumbs/thumb_' );
		caminho_img = split[0] + split[1];
		
		$( this ).parent().parent().parent().find( '> div' ).find( 'img' ).attr( 'src', caminho_img );
	});
	
	
	
	
	
	
	
	
	// Tirar borda de cima do primeiro item do submenu e borda de baixo do último.
	$( '.submenu' ).each(function(){
		$( this ).find( 'li:first-child a' ).css( 'border-top', 0 );
		$( this ).find( 'li:last-child a' ).css( 'border-bottom', 0 );
	});

});
