$(document).ready(function(){
  $(".autoHideBackground").focus(function(){
    $(this).removeClass("password").addClass("text");
  }).blur(function(){
    if($(this).val() == "") {
      $(this).removeClass("text").addClass("password");
    }
  });
});
