$(document).ready(function(){
  $("#messages div.error label").each(function(){
    var id = $(this).attr('for');
    $(this).click(function(){document.location.href="#"+id});
    $("#content table td.label label[@for='"+id+"']").parent().addClass('error');
    $(":input[id^='"+id+"']").each(function(){
      $(this).change(function(){
        $(this).parent().removeClass('error');
        $("#content table td.label label[@for='"+id+"']").parent().removeClass('error');
        $("#content table td.field#fld_"+id).removeClass('error');
      });
    });
    $("#content table td.field#fld_"+id).addClass('error');
  });
});
