jQuery toggle only single elements

jQuery toggle only single elements

if i use this toggle function each one of the div elements toggled.
but i only want one element to toggle.

so if i click on the first toggle only the first div element shell open not every div.

wheres my fault?

  1.     $("a.z8toogle").click(function () {
          $("div.z8stats").slideToggle("fast");
        });



  1. <a class="z8toogle" href="#">Z8 Statistiken</a><div class="z8stats">hier die scheis stats</div>
  2. <a class="z8toogle" href="#">Z8 Statistiken</a><div class="z8stats">hier die scheis stats</div>
  3. <a class="z8toogle" href="#">Z8 Statistiken</a><div class="z8stats">hier die scheis stats</div>
  4. <a class="z8toogle" href="#">Z8 Statistiken</a><div class="z8stats">hier die scheis stats</div>