function allocateSidebarHeight() {
	var contentDom = document.getElementById("content");
	var sidebarDom = document.getElementById("sidebar");
	if ((sidebarDom.offsetHeight) > contentDom.offsetHeight) {
		contentDom.style.height = (sidebarDom.offsetHeight)+"px";
	}
}

startList = function() { allocateSidebarHeight(); }
window.onload=startList;