Event.observe(window, 'load', function() { resizeColumns() });
Event.observe(window, 'load', function() { setWidthIE6() });

function setWidthIE6(){
	if (is_ie6) {
		if (document.body.clientWidth < 991) {
			document.body.style.width = 991 + 'px';
		}
	}
}

function resizeColumns() {
	var contentHeight;
	var sidebarAdjust = 138;
	var x='0';

	// Set height on sidebar
	contentHeight = document.getElementById("content").scrollHeight;
	var sidebarHeight = (contentHeight + sidebarAdjust);
	document.getElementById("sidebar").style.height = (sidebarHeight) + "px";
}