$(function() {
	$('div#setoresSetores').hide();
	$('li#botaoSetores a').click( function(){
		$('div#setoresSetores').fadeIn('fast');
		return false;
	});
	$('div#setoresSetores').load('http://www.desenvolvimento.gov.br/pdp/index.php/sitio/conteudo/ajax_carrega_setores', function(){fechar()});	
	$('ul#breadcrumb li').not(':first').each( function(){
		$(this).html( ' > ' + $(this).html() );
	});
	$('ul#navegacaoLocal li').not(':first').each( function(){
		$(this).html( ' | ' + $(this).html() );
	});
});

function fechar(){

	$('div#setoresSetores').hide();
	$('span#fecharSetores').click( function(){
		$('div#setoresSetores').fadeOut('fast');
	});	

}