$(document).ready(function() {
   $('a#investor').click(function() {
      $(this).hide('fast', function() {$(this).next().fadeIn('fast');});
      $(this).parents('#investor_login').addClass('active');
      return false;
   });
   $('a#x-out').click(function() {
      $('#investor_login fieldset').fadeOut('fast', function() {
         $('a#investor').show('fast');
         $(this).parents('#investor_login').removeClass('active');
         });
      
      return false;
   });
});