function Reload( subMn )
{
	var iHght;
	if( subMn == 'apps' ){  iHght = 1500;  }
	if( subMn == 'salads' ){  iHght = 730;  }
	if( subMn == 'burgers' ){  iHght = 1120;  }
	if( subMn == 'sandwiches' ){  iHght = 1050;  }
	var mnFrm = document.getElementById( 'menuFrm' );
	mnFrm.src = subMn + '.html';
	mnFrm.setAttribute( 'style', 'height:' + iHght + 'px;' );
	var mnSec = document.getElementById( 'muSec' );
	mnSec.setAttribute( 'style', 'height:' + iHght + 'px' );
	$( '#muSec' ).append( mnFrm );
	$( 'body' ).append( mnSec );
}

