$(document).ready(function(){
  $("input").focus(function () {
    $(this).addClass('hilight');
  });
  $("input").blur(function () {
    $(this).removeClass('hilight');
  });
  $("textarea").focus(function () {
    $(this).addClass('hilight');
  });
  $("textarea").blur(function () {
    $(this).removeClass('hilight');
  });
});
