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