		var content_wrapper = document.getElementById ("content-wrapper");
		var content_wrapper_height = 0;

		if (content_wrapper.offsetHeight) {
			content_wrapper_height = content_wrapper.offsetHeight;
		} else if (content_wrapper.style.pexelHeight) {
			content_wrapper_height = content_wrapper.style.pexelHeight;
		}

		var sidebar = document.getElementById ("side-bar");
		sidebar_height = 0;

		if (sidebar.offsetHeight) {
			sidebar_height = sidebar.offsetHeight;
		} else if (sidebar.style.pexelHeight) {
			sidebar_height = sidebar.style.pexelHeight;
		}

		if (sidebar_height + 10 > content_wrapper_height) {
			content_wrapper.style.height = sidebar_height + 10;
		}

