function setTall() {
	if (document.getElementById) { // Do you know the DOM?
		if (menu_container.offsetHeight < 488) {
			menu_container.style.height = 488 + 'px';
		}
		
		containerHeight = container.offsetHeight - 132;
		menuHeight = menu_container.offsetHeight;
		contentHeight = content_container.offsetHeight;
				
		if (containerHeight >= menuHeight && containerHeight >= contentHeight) {
			menu_container.style.height = containerHeight + 'px';
			content_container.style.height = containerHeight + 'px';
		}
		
		if (menuHeight >= containerHeight && menuHeight >= contentHeight) {
			content_container.style.height = menuHeight + 'px';
			container.style.height = menuHeight + 'px';
		}
		
		if (contentHeight >= menuHeight && contentHeight >= containerHeight) {
			container.style.height = contentHeight + 'px';
			menu_container.style.height = contentHeight + 'px';
		}
	}
}

window.onload = function() {
	setTall();
}
