// CWS April 2006 - lyle [at] cws [dot] net
// Equalize heights of page columns, because there's
// no good way to do this with pure CSS.

function equalize_columns() {
	with (document.getElementById("content")) {
		style.height = offsetHeight-parseInt(style.height) > 1 || !style.height ? offsetHeight + 'px' : style.height;
	}
}