/******************************************************************************
* cmJQuery.js
******************************************************************************/

$(document).ready(function() 
{  
    $('#cmSiteMap .cmEqual').equalHeights(); 
	
	$(document).ready( function() {
		/**
		 * Maximize the real estate available to the portal contents
		 */
		stretch_portal_content();
		$(window).resize( stretch_portal_content );
	});	
	
	function stretch_portal_content() {
		if( $(window).height() > $('body').height() ) {
			$( '.cmBodyContent' ).height(
				$(window).height() - ( $('body').height() - $('.cmBodyContent').height() + 1 )
			);
		}
	}		
});
