// JavaScript Document
function setHeights() 
{
	var contentDom = document.getElementById("content");
	var sidebarDom = document.getElementById("left_col");
	if((contentDom.offsetHeight) > sidebarDom.offsetHeight) 
	{
		sidebarDom.style.height = (contentDom.offsetHeight)+"px";
	}
	else
	{
		contentDom.style.height = (sidebarDom.offsetHeight)+"px";
	}	
}
window.onload=setHeights;