$(document).ready(function () { 	
 
	/*------------------------------------------------------------
		Preenche o subtítulo dinamicamente (a partir do item selecionado no menu nivel 2)
	-------------------------------------------------------------*/
	//jQuery("p.Subtitulo").text(jQuery("li.Ativo a:first span, li.Ativo a:first",jQuery(".nivel-2")).eq(0).text());
	
	/*------------------------------------------------------------
		Exibe o holder do nível 3 (somente quando algum item de nível 3 estiver ativo)
	-------------------------------------------------------------*/
	$(".Secundario ul li a.Ativo").each(function() {
		var subtitulo = $(this).attr("rel");
		if(subtitulo) {
			jQuery("p.Subtitulo").text(subtitulo);
		}
	});
	
	if($("h1.Area").text() && ($("h1.Area").text().toLowerCase() != $("p.Titulo").text().toLowerCase())) {
		$("h1.Area").show();
	}
	
	/* -----------------------------------------------------------
    	Exibe o botão Voltar, somente a partir do nível 3 de navegação
    	--------------------------------------------------------*/
    	
	var strUrl = window.location.pathname;
 	var strPartesUrl = strUrl.split('/');
 	if(strPartesUrl.length > 5) {
 		$(".button.default").show();
 	}

});

