$(function() {
	$('#sidebar, #container').find(' > .block').each(function() {
		$(this)
			.before($('<div />').addClass('block-top'))
			.after($('<div />').addClass('block-bottom'))
	});
	
	setTimeout(function() {

		var height = $('#sidebar').height() - parseInt($('#sidebar .block-bottom:last').css('margin-bottom')) - $('#container .block-top:first').height() - $('#container .block-bottom:first').height();

		if ($('#user-tools').length) {
		    height -= $('#user-tools').height() + parseInt($('#user-tools').css('margin-bottom')) + parseInt($('#user-tools').css('padding-top')) + parseInt($('#user-tools').css('padding-bottom'));
		}

		$('#container .block').css('min-height', height + 'px');
	},
	200);
});
