Selecting divs after h3 until the next h3

Selecting divs after h3 until the next h3

Hi jQuery-friends,

here's what my code is looking like

<h3>Title 1</h3>
<div>content</div>
<div>content</div>
<div>content</div>
<h3>Title 2</h3>
<div>content</div>
<div>content</div>
<div>content</div>
<h3>Title 3...
...


My jQuery code:

$('body.page-galerie #content h3').click(function () {
      $(this).siblings("div").slideToggle();
});


The code toggles all divs, but I want it to only toggle all divs under the h3 until the next h3.

Any help is appreciated

Thanks!