$(document).ready(function(){
$('#wholesales_login form').hide();

  $('#wholesales_login a').toggle(function() {
    $(this)
      .addClass('active')
      .next('form')
      .animate({'height':'show'}, {
        duration:'slow',
        easing: 'easeOutBounce'
      });
  }, function() {
    $(this)
      .removeClass('active')
      .next('form')
      .slideUp();
  });
  $('#wholesales_login form :submit').click(function() {
    $(this)
      .parent()
      .prev('a')
      .click();
  });

 $('#wholesales_pass form').hide();
  $('#wholesales_pass a').toggle(function() {
    $(this)
      .addClass('active')
      .next('form')
      .animate({'height':'show'}, {
        duration:'slow',
        easing: 'easeOutBounce'
      });
  }, function() {
    $(this)
      .removeClass('active')
      .next('form')
      .slideUp();
  });
  $('#wholesales_pass form :submit').click(function() {
    $(this)
      .parent()
      .prev('a')
      .click();
  });  
});
