$(document).ready(function() {
  // Email Address
  $("#login-username").focus(function() {
    if ($(this).attr("value") == "Email") {
      $(this).attr("value", "");
      $(this).removeClass("faded-input");
    }
  });
  $("#login-username").blur(function() {
    if($(this).attr("value") == "") {
      $(this).attr("value", "Email");
      $(this).addClass("faded-input");
    }
  });
  // Password
  $("#login-password").focus(function() {
    $(this).attr("value", "");
    $(this).removeClass("faded-input");
    $(this).hide();
    $('#real-password').show();
    $("#real-password").removeClass("hidden");
    $("#real-password").focus();
  });
  $("#login-password").blur(function() {
    if($(this).attr("value") == "") {
      $(this).attr("value", "Password");
      $(this).addClass("faded-input");
    }
  });
  // Submit button
  $("#login-submit").click(function(e) {
    $("#login-form").submit();
  });
});