
function balanceColumns()
{
return;
	var s = fetchElement('sidebar');
	var p = fetchElement('primary');
	
	sh = s.offsetHeight;
	ph = p.offsetHeight;
	
	if (sh > ph)
	{
		p.style.height = (sh-32)+"px";
	}
	else if (sh < ph)
	{
		s.style.height = (ph-32)+"px";
	}
}