/**
 *	display.js
 *
 *	holds functions pertaining to the manipulation of page layout, but has nothing 
 *	to do, directly, with nevigation.
 *
 */

function resizeContent()
{
	var main_content = document.getElementById("interior-intro");
	if(main_content != null)
	{
		if(main_content.offsetHeight < 500) {
			main_content.style.height = 500+"px";
		} /*else {
			main_content.style.height = main_content.offsetHeight + "px";
		}*/
	}
}