$(document).ready(function() {
 $("table.zebra tr:even").addClass("even");
  $("table.tableSorter_filter_pager").tablesorter({dateFormat: "uk", widgets: ['filter', 'pager', 'zebra'], widthFixed: true, positionFixed: false });
  $("table.tableSorter_pager").tablesorter({dateFormat: "uk", widgets: ['pager', 'zebra'], widthFixed: true, positionFixed: false });
 $("#containerTabs > ul").tabs();
 $("#qSkeywords").focus(function() { if ($(this).val() == 'Search...') $(this).val(""); }).blur(function() { if ($(this).val().length == 0) $(this).val('Search...'); });
 $('#Footer ul li.print a').click(function(){window.print(); return false;});
});