Alternate for Toggle

Alternate for Toggle

Hi,

With the dropping on toggle (Multiple functions)  I'm trying to figure out how to rewrite this:

  1. var $j = jQuery.noConflict();
  2. $j(function(){
  3.   $j('#nav a[href*="stacks"]').toggle (function() {
  4.     $j('#extraContainer3').slideDown('1600')},
  5.   function() {
  6.     $j('#extraContainer3').slideUp('1000')});
  7. });

I tried this:
  1. var $j = jQuery.noConflict();
  2. $j(function(){
  3.   $j('#nav a[href*="stacks"]').click (function() {
  4.     $j('#extraContainer3').slideToggle('1600')});
  5. });

What am I doing wrong?
Thanks,  Bill