$(document).ready(function() {
    var wysokosc = 0;
	// wybieranie maksymalnej
    $(".box_zamow_row2 > div").each(function() {
        if(!$(this).hasClass("clear")) {
            var h = $(this).height();
            if(h > wysokosc) {
                wysokosc = h;
            }
        }
    });
	// ustawianie rownej dla wszystkich divow
    $(".box_zamow_row2 > div").each(function() {
        if(!$(this).hasClass("clear")) {
            $(this).css("height", wysokosc)
        }
    });
});
