﻿$(document).ready(function () {
  $('input.clearme').focus(function(i) {
    if (this.value == this.title) {
      this.value = "";
      $(this).removeClass('clearme');
    }
  });
  $('input.clearme').blur(function(i) {
    if (this.value == "") {
      this.value = this.title;
      $(this).addClass('clearme')
    }
  });
  $('#password_help').focus(function(i) {
    $(this).hide();
    $('#password').show();
    $('#password').focus();
  });

  $('input#password').blur(function(i) {
    if (this.value=="") {
      $(this).hide();
      $('#password_help').show();
    }
  });
});
