info.sortHeight = function () {
	var content = $("#container");
	if (content.length) {
		content.height("auto");
		if (content.height() < info.height) {
			content.height(info.height);
		}
	}
};
