$(document).ready(function(){
   
      if(!$("#menu dt").children().not(".titulo").is("span")){
   
       
   
      $("#menu dt").prepend("<span> + </span>")
   
       
   
      }
  
       
  
      $("#menu").find("dd").hide();
  
       
  
      $("#menu").find("dt").toggle(function(){
  
       
  
      $(this).next().slideDown("slow");
  
       
  
      $(this).find("span").not(".titulo").empty();
  
       
  
      $(this).prepend("<span> - <span>");
  
       
  
      }, function() {
  
       
  
      $(this).next().slideUp("slow");
  
       
  
      $(this).find("span").not(".titulo").empty();
  
       
  
      $(this).prepend("<span> + </span>");
  
       
  
      });
  
      });
