/////////////////////////////////////////////////////////////////////////////////////////////////
// formatuj wiersze tabel
$(document).ready(
	function() {
		$("tr").mouseover(function() {
		   $(this).addClass("over");
		});
		
		$("tr:odd").addClass("pzkb-odd");
		$("tr:even").addClass("pzkb-even");
		
		$("tr").mouseout(function() {
		   $(this).removeClass("over");
		});
		
		
	}
);