window.addEvent('domready', function(){
	var height = 0;
	height = Math.max($('main-wrap').getSize().y-60, $('content-wrap').getSize().y+240);
	height = Math.max(height, $('teaser-wrap').getSize().y+310);
	height = Math.max(height, $('navi-wrap').getSize().y+300);
	var page = $$('#page');
	page.setStyle('min-height', height);
});

window.addEvent('resize', function(){
  	var height = 0;
	height = Math.max($('main-wrap').getSize().y-60, $('content-wrap').getSize().y+240);
	height = Math.max(height, $('teaser-wrap').getSize().y+310);
	height = Math.max(height, $('navi-wrap').getSize().y+300);
	var page = $$('#page');
	page.setStyle('min-height', height);
});

	



