// JavaScript Document

function fixColumnHeight() {
	//Set side-bar to 100% height
	var x = document.body.scrollHeight;
	var sidebar = document.getElementById("sidebar");
	sidebar.style.height = x + "px";
}
  
window.onload = fixColumnHeight;  