$(document).ready( function() {


   $(".mostrar").toggle(

      function(e) {
         $('.abrirnoticia').hide('slow');
         e.preventDefault();
         var caminho=$(this).attr("rel");
         $("#"+caminho).toggle("slow");
       // $(this).html('Ocultar Detalhes');
      },

      function() {
         var caminho=$(this).attr("rel");
         $('.abrirnoticia').hide('slow');
         $("#"+caminho).hide('slow');
      }
   );






});
//------------------------------------------------------

