$(document).ready(
	function()
	{
		$('.opisyArtykul table').addClass('tabelka');
		$('.opisyArtykul table tr:odd').addClass('odd');
		$('.opisyArtykul table tr:even').addClass('even');
		$('.opisyArtykul table tr:first-child').removeClass('odd');
		$('.opisyArtykul table tr:first-child').removeClass('even');
		$('.opisyArtykul table tr:first-child').addClass('firstRow');
	}
);