slideToggle - more efficient way to write?

slideToggle - more efficient way to write?

Here's my test page:
http://circleatseven.com/projects/_Design_Assets/Snippets/Jquery/jcarousel/index.html

.. While this page works just fine.. I know this isn;t the most efficient way to do this. I have written individual functions to toggle each of the 12 buttons in the carousel... So, if I want to add more items to that carousel - I then have to add more code like so:

  1. $('a.linkone').click(function() {
  2. $('.one').slideToggle(400);
  3. $(".linkone").addClass("current");
  4. });
  5. $('a.linktwo').click(function() {
  6. $('.two').slideToggle(400);
  7. $(".linktwo").addClass("current");
  8. });
  9. $('a.linkthree').click(function() {
  10. $('.three').slideToggle(400);
  11. $(".linkthree").addClass("current");
  12. });

... and so on......

Is there a more efficient way to write this so I don't have to do this?

Thanks in advance!