
  $(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');      
    });

    // Boxtoggle
    $('.boxstart').hide();
    
    
    // Boxtoggle
    $('.themenwrap').hide();
    $('.thema1').show();
    
    $('.thementitel').click(function() {
      
      //alle ausblenden
      //$('.themenwrap').hide();
      
      //titel activ setzen
      $('.thementitel').attr('class', 'thementitel');
      $(this).attr('class', 'thementitel themaactiv');
      
      $('.themenwrap').hide();
      
      //text zeigen
      $(this).parent().next('.themenwrap').show();
      
      return false;
      
    });

  });
