
  $(function() {

    
    // Boxtoggle
    $('.boxtoogletext').hide();
    
    $('.boxtoogleheader').toggle(function() {
      $(this).next('.boxtoogletext').show('fast');
      $(this).attr('class', 'boxtoogleheader plus');
    }, function() {
      $(this).next('.boxtoogletext').hide('fast');
      $(this).attr('class', 'boxtoogleheader minus');      
    });


  });
