// JavaScript Document
// set the inner page to at least the height of the window
window.addEvent('domready', function() {
	if ( $('box-content-inner').getSize().size.y <  window.getScrollHeight() ) { 
		$('box-content-inner').setStyle('height', window.getScrollHeight() + 'px');
	}
});