$(window).load(function () {
	var height = 0;

	$('.block-full').each(function () {
		height += $(this).outerHeight() + 20;
	});
	$('.block-leftcol').each(function () {
		height += $(this).outerHeight() + 20;
	});$

	height += 20;

	$('#body').css('height', height + 'px');
});
