$(document).ready(function(){
 $('#topo_txt_hide').hide();
	$('#abrir_menu').click(function(event){
		event.preventDefault();
		$("#topo_txt_hide").slideDown().toggle();
		$("#topo_txt_hide1").hide();
		$("#topo_txt_hide2").hide();
		$("#topo_txt_hide3").hide();
		$("#topo_txt_hide4").hide();
	});
 $('#topo_txt_hide1').hide();
	$('#abrir_menu1').click(function(event){
		event.preventDefault();
		$("#topo_txt_hide1").slideDown().toggle();
		$("#topo_txt_hide").hide();
		$("#topo_txt_hide2").hide();
		$("#topo_txt_hide3").hide();
		$("#topo_txt_hide4").hide();
	});
 $('#topo_txt_hide2').hide();
	$('#abrir_menu2').click(function(event){
		event.preventDefault();
		$("#topo_txt_hide2").slideDown().toggle();
		$("#topo_txt_hide").hide();
		$("#topo_txt_hide1").hide();
		$("#topo_txt_hide3").hide();
		$("#topo_txt_hide4").hide();
	});
 $('#topo_txt_hide3').hide();
	$('#abrir_menu3').click(function(event){
		event.preventDefault();
		$("#topo_txt_hide3").slideDown().toggle();
		$("#topo_txt_hide").hide();
		$("#topo_txt_hide1").hide();
		$("#topo_txt_hide2").hide();
		$("#topo_txt_hide4").hide();
	});
 $('#topo_txt_hide4').hide();
	$('#abrir_menu4').click(function(event){
		event.preventDefault();
		$('#topo_txt_hide4').slideDown().toggle();
		$("#topo_txt_hide").hide();
		$("#topo_txt_hide1").hide();
		$("#topo_txt_hide2").hide();
		$("#topo_txt_hide3").hide();
	});
 });
