function init() {
	var container = document.getElementById("container");
	var b = document.body.offsetHeight;

	if (container.offsetHeight < b) container.style.height = b + 'px';
}