function initialize() {

	// trzeba odjac wysokosci stalych blokow (popularne i menu)
	var bloki = 370;
	var minHeight = 421;

	if ( document.all ) {
		// ustaw wysokosc tekstu na wysokosc ikonek IE
		var aktualna = document.getElementById("PrawidlowyBlokTekstu").offsetHeight;
		var wysokosc = document.getElementById("ikonki").offsetHeight;
		if ( aktualna <= wysokosc - bloki)
			document.getElementById("PrawidlowyBlokTekstu").style.height = wysokosc-bloki;
	}
	else {
		// wysokosc aktualna bloku tekstu
		var wysBlokuTXT = document.defaultView.getComputedStyle(document.getElementById("PrawidlowyBlokTekstu"), null).getPropertyValue("height");
		var wysBloku = wysBlokuTXT.replace("px", "");
		wysBloku = parseInt(wysBloku,10);
		
		// wysokosc ikonek
		var RefDiv = document.getElementById("ikonki");
		var h_style = document.defaultView.getComputedStyle(RefDiv, null).getPropertyValue("height");
		var wys = h_style.replace("px","");
		wys = parseInt(wys, 10);
		
		
		if ( wysBloku <= wys - bloki )
			document.getElementById("PrawidlowyBlokTekstu").style.height = wys-bloki+"px";
	}

}