function initPage()
{
	document.getElementById("left-column").style.paddingBottom = document.getElementById("sponsors").offsetHeight + 90 + "px";
}

if (window.addEventListener){
	window.addEventListener("load", initPage, false);
}
else if (window.attachEvent && !window.opera){
	window.attachEvent("onload", initPage);
}
