$(document).ready(function() {

  $("table tr").hover(function() {
    $(this).addClass("hover");
  }, function() {
    $(this).removeClass("hover");
  });

  
  $("input, textarea, select").focus(function() {
    $(this).parent().addClass("focused");
  });

  $("input, textarea, select").blur(function() {
    $(this).parent().removeClass("focused");
  });
  
  
  if ($('li.error').length == 0)
    $(':input:visible:enabled:first').focus();
  else
    $('li.error :input:visible:enabled:first').focus(); 

}); 

