{"id":1485,"date":"2020-02-22T18:51:22","date_gmt":"2020-02-22T23:51:22","guid":{"rendered":"http:\/\/dev.rochesterccc.org\/?page_id=1485"},"modified":"2021-04-25T16:36:21","modified_gmt":"2021-04-25T20:36:21","slug":"children","status":"publish","type":"page","link":"https:\/\/www.rochesterccc.org\/zh\/children","title":{"rendered":"Children&#8217;s Ministry"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; fullwidth=&#8221;on&#8221; admin_label=&#8221;Section&#8221; _builder_version=&#8221;4.6.1&#8243; background_image=&#8221;https:\/\/www.rochesterccc.org\/wp-content\/uploads\/2020\/02\/children_1920x300.jpg&#8221; background_position=&#8221;center_right&#8221;][et_pb_fullwidth_header title=&#8221;Children&#8217;s Ministry&#8221; text_orientation=&#8221;center&#8221; _builder_version=&#8221;4.6.1&#8243; title_font=&#8221;|700|||||||&#8221; title_text_align=&#8221;center&#8221; title_font_size=&#8221;60px&#8221; content_font=&#8221;|600|||||||&#8221; content_font_size=&#8221;22px&#8221; content_line_height=&#8221;1.3em&#8221; subhead_font=&#8221;Didact Gothic|700|||||||&#8221; subhead_font_size=&#8221;35px&#8221; subhead_line_height=&#8221;1.8em&#8221; background_color=&#8221;rgba(0,0,0,0)&#8221; use_background_color_gradient=&#8221;on&#8221; background_color_gradient_start=&#8221;rgba(118,118,211,0.35)&#8221; background_color_gradient_end=&#8221;rgba(31,31,71,0.81)&#8221; background_color_gradient_type=&#8221;radial&#8221; background_color_gradient_end_position=&#8221;53%&#8221; background_color_gradient_overlays_image=&#8221;on&#8221; background_enable_image=&#8221;off&#8221; background_position=&#8221;center_right&#8221; custom_button_one=&#8221;on&#8221; button_one_text_size=&#8221;16px&#8221; button_one_text_color=&#8221;#ffffff&#8221; button_one_bg_color=&#8221;#a0beef&#8221; button_one_border_width=&#8221;8px&#8221; button_one_border_color=&#8221;rgba(0,0,0,0)&#8221; button_one_border_radius=&#8221;0px&#8221; button_one_letter_spacing=&#8221;3px&#8221; button_one_font=&#8221;Didact Gothic|700||on|||||&#8221; button_one_use_icon=&#8221;off&#8221; custom_button_two=&#8221;on&#8221; button_two_text_size=&#8221;16px&#8221; button_two_text_color=&#8221;#34587c&#8221; button_two_bg_color=&#8221;#ffffff&#8221; button_two_border_width=&#8221;8px&#8221; button_two_border_color=&#8221;rgba(0,0,0,0)&#8221; button_two_border_radius=&#8221;0px&#8221; button_two_letter_spacing=&#8221;3px&#8221; button_two_font=&#8221;Didact Gothic|700||on|||||&#8221; button_two_icon=&#8221;%%40%%&#8221; button_two_icon_placement=&#8221;left&#8221; button_two_on_hover=&#8221;off&#8221; custom_padding=&#8221;10vw||10vw||true&#8221; custom_padding_tablet=&#8221;&#8221; custom_padding_phone=&#8221;||80px&#8221; custom_padding_last_edited=&#8221;on|phone&#8221; animation_style=&#8221;fade&#8221; animation_duration=&#8221;1500ms&#8221; animation_starting_opacity=&#8221;15%&#8221; animation_speed_curve=&#8221;ease-in&#8221; title_font_tablet=&#8221;&#8221; title_font_phone=&#8221;&#8221; title_font_last_edited=&#8221;on|phone&#8221; title_font_size_tablet=&#8221;40px&#8221; title_font_size_phone=&#8221;40px&#8221; title_font_size_last_edited=&#8221;on|tablet&#8221; content_font_size_tablet=&#8221;20px&#8221; content_font_size_phone=&#8221;20px&#8221; content_font_size_last_edited=&#8221;on|desktop&#8221; subhead_font_size_tablet=&#8221;&#8221; subhead_font_size_phone=&#8221;18px&#8221; subhead_font_size_last_edited=&#8221;on|phone&#8221; background_last_edited=&#8221;off|desktop&#8221; background_position_tablet=&#8221;center_right&#8221; background_position_phone=&#8221;center_right&#8221; title_text_shadow_style=&#8221;preset2&#8243;][\/et_pb_fullwidth_header][et_pb_fullwidth_code _builder_version=&#8221;4.4.5&#8243;]<script><!-- [et_pb_line_break_holder] -->\/\/Highlight Active Links on Scroll and Click for One Page Divi Websites - By Divi Soup<!-- [et_pb_line_break_holder] -->jQuery(function ($) {<!-- [et_pb_line_break_holder] -->    \/\/Set first menu item as active<!-- [et_pb_line_break_holder] -->    $('#sticky li:first-child').addClass('ds-menu-active')<!-- [et_pb_line_break_holder] -->    $(window).scroll(function () {<!-- [et_pb_line_break_holder] -->        \/\/Create variable to get the current vertical position<!-- [et_pb_line_break_holder] -->        var scrollPos = $(window).scrollTop();<!-- [et_pb_line_break_holder] -->        \/\/For each section with the class ds-section<!-- [et_pb_line_break_holder] -->        $('.ds-section').each(function (i) {<!-- [et_pb_line_break_holder] -->            \/\/Create variable to calculate when to add active class<!-- [et_pb_line_break_holder] -->            var topPos = $(this).offset().top;<!-- [et_pb_line_break_holder] -->            \/\/If the section is equal to or less than 80px from the top of the page<!-- [et_pb_line_break_holder] -->            if ((topPos - scrollPos) <= 10) {<!-- [et_pb_line_break_holder] -->                \/\/Remove the active class from the previous menu item<!-- [et_pb_line_break_holder] -->                $('.ds-menu-active').removeClass('ds-menu-active')<!-- [et_pb_line_break_holder] -->                \/\/Add the class to the current menu item<!-- [et_pb_line_break_holder] -->                $('#sticky li').eq(i).addClass('ds-menu-active')<!-- [et_pb_line_break_holder] -->            }<!-- [et_pb_line_break_holder] -->        })<!-- [et_pb_line_break_holder] -->    });<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --><\/script>[\/et_pb_fullwidth_code][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221;][et_pb_row _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221;][et_pb_column _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221; type=&#8221;4_4&#8243;][et_pb_image src=&#8221;https:\/\/www.rochesterccc.org\/wp-content\/uploads\/2020\/03\/Child_Verse_800x350.png&#8221; align=&#8221;center&#8221; module_id=&#8221;classinfo&#8221; module_class=&#8221;ds-section&#8221; _builder_version=&#8221;4.4.5&#8243;][\/et_pb_image][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221;][et_pb_column _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221; type=&#8221;4_4&#8243;][et_pb_text _builder_version=&#8221;4.4.4&#8243;]<\/p>\n<h2>Nursery<\/h2>\n<p>Welcome to the Nursery room at RCCC! Our Nursery ministry provides babies 0-2 years old with a safe, clean, and loving environment.<\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221;][et_pb_column _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221; type=&#8221;4_4&#8243;][et_pb_text _builder_version=&#8221;4.3.3&#8243;]<\/p>\n<h2>Toddler and Preschool<\/h2>\n<p>We engage your children through kids\u2019 worship, Bible stories, games, and arts and crafts. We also have play time in and outside as well as snack time.<\/p>\n<p>[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221; column_structure=&#8221;1_2,1_2&#8243;][et_pb_column _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221; type=&#8221;1_2&#8243;][et_pb_text _builder_version=&#8221;4.3.3&#8243;]<\/p>\n<h2>Jesus And Me (JAM)<\/h2>\n<p>Jesus And Me worship (JAM) is a children\u2019s worship service for kids in grades 1-6.<br \/> We sing, we play games, we pray, we learn Bible lessons and learn about Jesus and how to have a relationship with Him.<\/p>\n<p>[\/et_pb_text][\/et_pb_column][et_pb_column _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221; type=&#8221;1_2&#8243;][et_pb_image src=&#8221;https:\/\/www.rochesterccc.org\/wp-content\/uploads\/2020\/03\/JAM-300&#215;99.jpg&#8221; _builder_version=&#8221;4.4.0&#8243; hover_enabled=&#8221;0&#8243; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; specialty=&#8221;on&#8221; _builder_version=&#8221;4.9.4&#8243; background_image=&#8221;https:\/\/www.rochesterccc.org\/wp-content\/uploads\/2020\/04\/church-09.jpg&#8221; hover_enabled=&#8221;0&#8243; disabled_on=&#8221;on|on|on&#8221; disabled=&#8221;on&#8221; sticky_enabled=&#8221;0&#8243;][et_pb_column type=&#8221;3_4&#8243; specialty_columns=&#8221;3&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_row_inner _builder_version=&#8221;4.3.3&#8243;][et_pb_column_inner saved_specialty_column_type=&#8221;3_4&#8243; _builder_version=&#8221;4.3.3&#8243;][et_pb_image src=&#8221;https:\/\/www.rochesterccc.org\/wp-content\/uploads\/2020\/03\/Child_Verse_800x350.png&#8221; align=&#8221;center&#8221; module_id=&#8221;classinfo&#8221; module_class=&#8221;ds-section&#8221; _builder_version=&#8221;4.4.5&#8243;][\/et_pb_image][\/et_pb_column_inner][\/et_pb_row_inner][et_pb_row_inner _builder_version=&#8221;4.4.4&#8243;][et_pb_column_inner saved_specialty_column_type=&#8221;3_4&#8243; _builder_version=&#8221;4.3.3&#8243;][et_pb_text _builder_version=&#8221;4.4.4&#8243;]<\/p>\n<h2>Nursery<\/h2>\n<p>Welcome to the Nursery room at RCCC! Our Nursery ministry provides babies 0-2 years old with a safe, clean, and loving environment.<\/p>\n<p>[\/et_pb_text][\/et_pb_column_inner][\/et_pb_row_inner][et_pb_row_inner _builder_version=&#8221;4.3.3&#8243;][et_pb_column_inner saved_specialty_column_type=&#8221;3_4&#8243; _builder_version=&#8221;4.3.3&#8243;][et_pb_text _builder_version=&#8221;4.3.3&#8243;]<\/p>\n<h2>Toddler and Preschool<\/h2>\n<p>We engage your children through kids\u2019 worship, Bible stories, games, and arts and crafts. We also have play time in and outside as well as snack time.<\/p>\n<p>[\/et_pb_text][\/et_pb_column_inner][\/et_pb_row_inner][et_pb_row_inner column_structure=&#8221;1_2,1_2&#8243; _builder_version=&#8221;4.3.3&#8243;][et_pb_column_inner type=&#8221;1_2&#8243; saved_specialty_column_type=&#8221;3_4&#8243; _builder_version=&#8221;4.3.3&#8243;][et_pb_text _builder_version=&#8221;4.3.3&#8243;]<\/p>\n<h2>Jesus And Me (JAM)<\/h2>\n<p>Jesus And Me worship (JAM) is a children\u2019s worship service for kids in grades 1-6.<br \/> We sing, we play games, we pray, we learn Bible lessons and learn about Jesus and how to have a relationship with Him.<\/p>\n<p>[\/et_pb_text][\/et_pb_column_inner][et_pb_column_inner type=&#8221;1_2&#8243; saved_specialty_column_type=&#8221;3_4&#8243; _builder_version=&#8221;4.3.3&#8243;][et_pb_image src=&#8221;https:\/\/www.rochesterccc.org\/wp-content\/uploads\/2020\/03\/JAM-300&#215;99.jpg&#8221; _builder_version=&#8221;4.4.0&#8243; hover_enabled=&#8221;0&#8243; sticky_enabled=&#8221;0&#8243;][\/et_pb_image][\/et_pb_column_inner][\/et_pb_row_inner][et_pb_row_inner disabled_on=&#8221;on|on|on&#8221; module_id=&#8221;materials-activities&#8221; module_class=&#8221;ds-section&#8221; _builder_version=&#8221;4.9.4&#8243; disabled=&#8221;on&#8221;][et_pb_column_inner saved_specialty_column_type=&#8221;3_4&#8243; _builder_version=&#8221;4.4.4&#8243;][et_pb_divider _builder_version=&#8221;4.4.4&#8243;][\/et_pb_divider][et_pb_text admin_label=&#8221;Resources Header&#8221; _builder_version=&#8221;4.4.4&#8243; locked=&#8221;off&#8221;]<\/p>\n<h1 style=\"text-align: center;\">Resources<\/h1>\n<p>[\/et_pb_text][et_pb_text admin_label=&#8221;Hello&#8221; _builder_version=&#8221;4.4.4&#8243; locked=&#8221;off&#8221;]<\/p>\n<p><em><strong>Hello Families of Rochester Chinese Christian Church!<\/strong><\/em><\/p>\n<p>Even though we are isolated to our homes for a certain period of time, we want to provide you resources to continue Bible study and devotion times with your children.<\/p>\n<p>[\/et_pb_text][et_pb_divider divider_style=&#8221;dotted&#8221; module_id=&#8221;maymaterials&#8221; _builder_version=&#8221;4.4.5&#8243;][\/et_pb_divider][et_pb_text admin_label=&#8221;Christmas Resources Header&#8221; _builder_version=&#8221;4.7.4&#8243; locked=&#8221;off&#8221;]<\/p>\n<h2>Christmas Activities and Resources<\/h2>\n<hr \/>\n<p>&nbsp;<\/p>\n<p>[\/et_pb_text][\/et_pb_column_inner][\/et_pb_row_inner][et_pb_row_inner disabled_on=&#8221;on|on|on&#8221; _builder_version=&#8221;4.9.4&#8243; _module_preset=&#8221;default&#8221; disabled=&#8221;on&#8221;][et_pb_column_inner saved_specialty_column_type=&#8221;3_4&#8243; _builder_version=&#8221;4.7.4&#8243; _module_preset=&#8221;default&#8221;][et_pb_text admin_label=&#8221;Additional Resources&#8221; module_id=&#8221;resources&#8221; module_class=&#8221;ds-section&#8221; _builder_version=&#8221;4.4.5&#8243; locked=&#8221;off&#8221;]<\/p>\n<h2 style=\"text-align: left;\">Additional Resources<\/h2>\n<hr \/>\n<p style=\"text-align: left;\">[\/et_pb_text][et_pb_text admin_label=&#8221;Resources&#8221; _builder_version=&#8221;4.4.5&#8243; locked=&#8221;off&#8221;]<\/p>\n<p><em><strong>Preschool Ideas<\/strong><\/em><\/p>\n<blockquote>\n<p>Think \u201cFoundational\u201d Truths &#8211; from the Old Testament like Creation, Fall, Noah, Abraham, Isaac, Jacob, and Joseph from the book of Genesis.<\/p>\n<p>&nbsp;<\/p>\n<p>Creation will look something like:<\/p>\n<ul>\n<li>Lesson 1: God made the world and man<\/li>\n<li>Lesson 2: Man disobeys (sins against) God<\/li>\n<li>Lesson 3: God accepts Abel and rejects Cain<\/li>\n<\/ul>\n<p>Lots of coloring!<\/p>\n<\/blockquote>\n<p><em><strong>Elementary and Teen<\/strong><\/em><\/p>\n<blockquote>\n<p>There are many resources available and we have listed some below. If you have some resources you recommend, please\u00a0email us\u00a0and we can work together.<\/p>\n<ul>\n<li><a href=\"https:\/\/www.group.com\/category\/ministry-resources\/childrens-ministry\/sunday-school\/empowering-courageous-kids\/downloadable-lessons.do#_ga=2.7482098.1901692979.1584793242-1380526833.1578198020\">Group Publishing Video teachings<\/a><\/li>\n<li><a href=\"https:\/\/www.keysforkids.org\/\">Keys for kids daily\u00a0devotions for Elementary and Teens<\/a><\/li>\n<li><a href=\"https:\/\/ministry-to-children.com\/devotions-for-kids\/\">Ministry to Children Elementary<\/a><\/li>\n<\/ul>\n<\/blockquote>\n<p><strong><em>And some school resources\u00a0<\/em>\u00a0<\/strong><\/p>\n<blockquote>\n<ul>\n<li><a href=\"https:\/\/classroommagazines.scholastic.com\/support\/learnathome.html%20\/t%20_blank\">Scholastic Learn at Home Resources<\/a>:\u00a0Scholastic has created great resources for Pre-K through grade 6+.\u00a0 Currently they have 5 days of lessons for each grade level with plans to add more.<\/li>\n<li><a href=\"https:\/\/www.schools.nyc.gov\/learning\/learn-at-home\/activity-packets\">New York City Department of Education Learn at Home Resources<\/a>:\u00a0Activity Packets for several different subject areas for Kindergartners through High School Students.<\/li>\n<li><a href=\"https:\/\/www.allkidsnetwork.com\/\">All Kids Network:<\/a> Craft Ideas, worksheets and other educational resources.\u00a0 In order to download or print materials, simply create a free account.<\/li>\n<li><a href=\"https:\/\/www.khanacademy.org\/\">Khan Academy:<\/a>\u00a0Tutorial and Explanatory Videos on a Variety of Subject Areas from Pre-K through college.<\/li>\n<li><a href=\"https:\/\/learn.khanacademy.org\/khan-academy-kids\/\">Khan Academy Kids:<\/a> App from Khan Academy designed for children age 2 through 7.<\/li>\n<\/ul>\n<\/blockquote>\n<p>&nbsp;<\/p>\n<p>[\/et_pb_text][\/et_pb_column_inner][\/et_pb_row_inner][\/et_pb_column][et_pb_column type=&#8221;1_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_sidebar area=&#8221;et_pb_widget_area_2&#8243; disabled_on=&#8221;on|on|on&#8221; module_id=&#8221;sticky&#8221; _builder_version=&#8221;4.9.4&#8243; body_font_size=&#8221;16px&#8221; custom_css_main_element=&#8221;#sticky li.ds-menu-active {\tbackground-color: #fbd574;}||#sticky li.ds-menu-active a{color: #000080  !important;\t}&#8221; custom_css_widget=&#8221;background: #fff;||padding: 10px;||-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);||-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);||box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);&#8221; border_color_all=&#8221;#ffffff&#8221; disabled=&#8221;on&#8221;][\/et_pb_sidebar][\/et_pb_column][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nursery Welcome to the Nursery room at RCCC! Our Nursery ministry provides babies 0-2 years old with a safe, clean, and loving environment.Toddler and Preschool We engage your children through kids\u2019 worship, Bible stories, games, and arts and crafts. We also have play time in and outside as well as snack time.Jesus And Me (JAM) [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-1485","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.rochesterccc.org\/zh\/wp-json\/wp\/v2\/pages\/1485","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rochesterccc.org\/zh\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.rochesterccc.org\/zh\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.rochesterccc.org\/zh\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rochesterccc.org\/zh\/wp-json\/wp\/v2\/comments?post=1485"}],"version-history":[{"count":91,"href":"https:\/\/www.rochesterccc.org\/zh\/wp-json\/wp\/v2\/pages\/1485\/revisions"}],"predecessor-version":[{"id":7151,"href":"https:\/\/www.rochesterccc.org\/zh\/wp-json\/wp\/v2\/pages\/1485\/revisions\/7151"}],"wp:attachment":[{"href":"https:\/\/www.rochesterccc.org\/zh\/wp-json\/wp\/v2\/media?parent=1485"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}