window.onload = function() {
	if ($("content") && $("content").clientHeight<400)
		$("content").style.height = "400px";
	$("footer").style.display = "block";
	if ($("column-1")) {
		var idx = 1, mx = 0;
		while ($("column-"+idx)) {
			if ($("column-"+idx).clientHeight>mx)
				mx = $("column-"+idx).clientHeight;
			idx ++;
		}
		if (mx>$("footer").offsetTop)
			$("footer").style.top = mx+"px";
	} else if ($("content").clientHeight+100>$("footer").offsetTop)
		$("footer").style.top = ($("content").clientHeight+100)+"px";
}
