﻿jQuery(document).ready(function(){

jQuery(".header form div input").focus (
      function(){
        if(jQuery(this).val()=='поиск по сайту')
          jQuery(this).val('');
          return true;
                });
jQuery(".header form div input").blur (
      function(){
        if(jQuery(this).val()=='')
          jQuery(this).val('поиск по сайту');
          return true;
                });

jQuery(".lawFoundRes tr th:first-child").addClass('center');
jQuery(".lawFoundRes tr td:first-child").addClass('center');

});

