/**
 * @author dnmedeiros
 */
$(document).ready(function(){
	mostraGrafico2(0, 'pie_csv_3D5', 'csv_politicos_cargo/0/0', 'grafico_politicos', 'ampie', '630', '300');
	
	
	$('.index_menu .toggle_next').click(function(){
		$('.index_menu div').each(function(){
			$(this).hide()	
			$(this).prev().removeClass('selected')	
		})
		$(this).addClass('selected')
	})
	tabela_capa('tabela_regioes')
	tabela_capa('tabela_redes')

});
function tabela_capa(nome){
	$('#'+nome).html(spinner());
	$.post(base_url()+'ajax_modulos_get/'+nome, [], function(response){
		
		$('#'+nome).html(response).show('fast')
		tabela = $('#'+nome+' table')
		//$('tr:last', tabela).wrap('<tfoot></tfoot>')
		foot = $('tr:last', tabela)
		tbody = foot.parent()
		td = foot.html()
		foot.remove()
		tbody.after('<tfoot><tr>'+td+'</tr></tfoot>')
		//tbody = $('tr:last', tabela).parent()
		tabela.tablesorter()
	});
}