$(document).ready(function() {
	//Kolorowanie wierszy dla tabel
	$('table tr:odd').addClass('odd');
	$('table tr:even').addClass('even'); 

});