$(document).ready(function() {             
               
                $("h3").next().hide();
                $("h2.alleein").hide();
                
                $("h2.alle").click(function(){
                    $("h3").next().show();
                    $("h2.alleein").show();
                    $("h2.alle").hide();
                    $("h3 a").hide();
                
                });

                $("h2.alleein").click(function(){
                    $("h3").next().hide();
                    $("h2.alle").show();
                	  $("h2.alleein").hide();
                	  $("h3 a").show();
                });
               
                $("h3 a").toggle(function() {
                    $(this).parent().next().slideDown();
                   
                }, function() {
                    $(this).parent().next().slideUp();
                });
                
                

           
            });
            
 

