// JavaScript Document
<!--função que executa o slider do rodapé-->
	$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#topo-app").animate({ 
					top: "-377px"
					}, 500 );
				$("#topMenuImage").html('Mostrar <br/> Utilitários');
	             $("#seta_app").attr("src", "css/next-vertical.png");
				$("#openCloseIdentifier").show();
			} else {
				$("#topo-app").animate({ 
					top: "0px"
					}, 500 );
				$("#topMenuImage").html('Ocultar <br/> Utilitários');
			      $("#seta_app").attr("src", "images/index-com-app-x.png");
				$("#openCloseIdentifier").hide();
			}
		});  
	});
<!--função que executa o slider do rodapé-->
