// Sekcja INFO - naglówek

function infoheaderHeight(group) {
	infoheaderMax = 0;
	group.each(function() {
		infoheaderCurrent = $(this).height();
		if(infoheaderCurrent > infoheaderMax) {
			infoheaderMax = infoheaderCurrent;
			}
		});
	group.height(infoheaderMax);
	}

$(document).ready(function() {
	infoheaderHeight($("div#info div.table > div:first-child > div"));
	});


// Sekcja INFO - tekst

function infotextHeight(group) {
	infotextMax = 0;
	group.each(function() {
		infotextCurrent = $(this).height();
		if(infotextCurrent > infotextMax) {
			infotextMax = infotextCurrent;
			}
		});
	group.height(infotextMax);
	}

$(document).ready(function() {
	infotextHeight($("div#info div.table > div:first-child + div > div"));
	});
