// -----------------SCRIPT PARA SHOW HIDE ou MOSTRA ESCONDE------------------------->
jQuery(document).ready(function() {
  jQuery(".topicoConteudo").hide();
  //toggle the componenet with class msg_body
  jQuery(".topico").click(function()
  {
    jQuery(this).next(".topicoConteudo").slideToggle(200);
  });
});

// -----------------SCRIPT PARA SHOW HIDE ou MOSTRA ESCONDE MAPA de Clientes------------------------->
jQuery(document).ready(function() {
  jQuery(".listaMapa").hide();
  //toggle the componenet with class msg_body
  jQuery(".estadoMapa").click(function()
  {
	jQuery(".listaMapa").hide();
	jQuery(this).next(".listaMapa").slideToggle(200);
  });
});
