/*var layoutFix =
{
	init: function()
	{*/
	function layoutFix() {
		var aDiv = document.getElementById("left_box");
		var bDiv = document.getElementById("right_box");
		var aHeight = aDiv.offsetHeight;
		var bHeight = bDiv.offsetHeight;
		if(bHeight >= aHeight){
			aDiv.style.minHeight = bHeight+'px';
		}
		else{
			bDiv.style.minHeight = aHeight+'px';
		}
	}
	/*},
};

Core.start(layoutFix);*/
window.onload = layoutFix;

