window.onload = adjust;

/***************  Left Column Height Adjustment ***************************/
function adjust(){
	var rh = document.getElementById('rcolumn').offsetHeight;
	document.getElementById('lcolumn').style.height = rh + "px";
}
/**************************************************************************/
