$(document).ready(function() {
 
  $('input#username').click(function() {
    $('#email-row').hide('fast');
    return false;
  });

  $('input#email').click(function() {
    $('#username-row').hide('fast');
    return false;
  });

  $('input#reset').click(function() {
    $('#username-row').show('slow');
    $('#email-row').show('slow');
    return false;
  });
});