$(document).ready(function() {
    
    // Inhalte verstecken
    $('.slider p').hide();

    
    // <h3> als Fakelink deklarieren mit hover Effekt
    $('h3').hover(function(){
      $(this).css({
        'cursor' : 'pointer',

      })
    }, function(){
      $(this).css();
    });
    
    // Inhalte anzeigen per Klick auf <h3>
    $('h3').toggle(function(){
      $(this).next().slideDown('slow');
      $(this).stop().animate({ paddingLeft : '20px', marginbottom: '20px', });
    }, function(){
      $(this).next().slideUp('slow');
      $(this).stop().animate({ paddingLeft : '5' });
    });
    
});

