/**
 * @author Karol Drągowski
 */

$(window).load(function(){
	//formatowanie tabelki z produktami
	$('table.lista').each(function(i,o){
		var top=$(o).find('tr:first/td').addClass('top');
		var bottom=$(o).find('tr:last/td').addClass('bottom');
		$(o).find('tr').each(function(j,o2){
			$('td:first', o2).addClass('left');
			var h=$('td:last', o2).addClass('right').outerHeight();
			$('td:last', o2).siblings().children().addClass('bgleft').css('height', h+'px').children('.linia').strictWidth().addClass('botLinia').end().children('.nazwa').strictWidth().addClass('botNazwa').end().children('.cena').strictWidth().addClass('botCena');
			$('td:last', o2).children().css('height', h+'px').children('.linia').strictWidth().addClass('botLinia').end().children('.nazwa').strictWidth().addClass('botNazwa').end().children('.cena').strictWidth().addClass('botCena');
		});
	});
});