
$(document).ready( function() {
	/**
	* Maximize the real estate available to the portal contents
	*/
	setTimeout("stretch_portal_content()",3000);
	$(window).resize( stretch_portal_content );
});

function stretch_portal_content() {
	if( $(window).height() > $('body').height() ) {
		$( '.container' ).height(
			$(window).height() - ( $('body').height() - $('.container').height() )
		);
	}
}
