def on_init2(event, **kwargs):
        def on_scene_back(event, **kwargs):
            ScrollTransition(menu2, menu2.last).start()

        def show_scene_one(event, **kwargs):
            ScrollTransition(inner_scene2, inner_scene).start()

        def show_scene_two(event, **kwargs):
            ScrollTransition(inner_scene, inner_scene2, None, 'random').start()
            
            
        button2 = Button(TextModel(font, "Go Back To Main Menu", 24))
        button2.on('mouse_clicked', on_scene_back)
        menu2.add_child(button2)

        inner_scene = Scene('Inner Scene 1')
        inner_scene.fill_color=(0, 0, 255)
        inner_scene.x = 300
        inner_scene.y = 150
        inner_scene.width = 200
        inner_scene.height = 150

        inner_scene2 = Scene('Inner Scene 2')
        inner_scene2.fill_color=(0, 255, 255)
        inner_scene2.width = inner_scene.width
        inner_scene2.height = inner_scene.height

        scene_1 = Button(TextModel(font, 'Show Scene One', 16))
        scene_2 = Button(TextModel(font, 'Show Scene Two', 16))

        scene_1.on('mouse_clicked', show_scene_one)
        scene_2.on('mouse_clicked', show_scene_two)

        scene_1.x = inner_scene.x - scene_1.width - 14
        scene_2.x = scene_1.x

        scene_1.y = inner_scene.y
        scene_2.y = scene_1.y + scene_1.height + 15

        inner_scene.add_child(Button(TextModel(font, 'Scene One', 18)))
        inner_scene2.add_child(Button(TextModel(font, 'Scene Two', 18)))
        
        menu2.add_child(inner_scene)
        menu2.add_child(scene_1)
        menu2.add_child(scene_2)
    scene = Scene('Toggle and Slider Test')
    scene.width = stage.width
    scene.height = stage.height

    container = Scene('Options Container')
    container.draggable = True
    container.show_background = True
    container.width = 300
    container.height = 500
    
    toggle = Toggle(TextModel(font, 'Sound', 24))
    toggle.active_image = chk_view
    toggle.inactive_image = x_view
    toggle.x = 30
    toggle.y = 12
    container.add_child(toggle)

    hbox = HBox()
    slider = HSlider(toggle.width)

    sound_level_label = TextView(TextModel(font, 'Sound Level', 14))

    hbox.add_child(sound_level_label)
    hbox.add_child(slider)

    hbox.x = 38
    hbox.y = toggle.y + toggle.height + 15

    slider.y = hbox.height * 0.5 - slider.height * 0.5
    
    container.add_child(hbox)
    def on_init(event, **kwargs):
        def on_click(event, **kwargs):
            if next_scene.parent == menu1:
                menu1.remove_child(next_scene)
                button.text = 'oops, click me again to bring it back!'
            else:
                menu1.add_child(next_scene)
                button.text = 'Click me'
                
            button.x = stage.width * 0.5 - button.width * 0.5
            button.y = stage.height * 0.5 - button.height * 0.5

        def on_scene_next(event, **kwargs):
            ScrollTransition(menu1, menu2).start()
    
        button = Button(TextModel(font, "Click Me", 24))
        button.on('mouse_clicked', on_click)

        next_scene = Button(TextModel(font, 'Next Scene', 24))
        next_scene.on('mouse_clicked', on_scene_next)

        button.x = stage.width * 0.5 - button.width * 0.5
        button.y = stage.height * 0.5 - button.height * 0.5

        next_scene.x = stage.width * 0.5 - button.width * 0.5
        next_scene.y = button.y + button.height + 10

        mouse_over_scene_1 = Scene("Mouse Over Scene One")
        mouse_over_scene_1.width = 200
        mouse_over_scene_1.height = 200
        mouse_over_scene_1.x = 100
        mouse_over_scene_1.y = 57

        mouse_over_scene_2 = Scene("Mouse Over Scene One")
        mouse_over_scene_2.width = mouse_over_scene_1.width
        mouse_over_scene_2.height = mouse_over_scene_1.height
        mouse_over_scene_2.fill_color=(150, 150, 150)

        paragraph = ParagraphView(TextModel(font, "This could contain a description of the moused over element!", 24), mouse_over_scene_2.width - 20)
        paragraph.show_background = False
        paragraph.show_border = False

        paragraph.x = 10
        paragraph.y = 10

        mouse_over_scene_2.add_child(paragraph)
        
        mouse_over_button = Button(TextModel(font, "Mouse Over", 24))
        mouse_over_button.show_background = False
        mouse_over_scene_1.add_child(mouse_over_button)

        def on_mouse_over(event, **kwargs):
            def on_finished(event, **kwargs):
                mouse_over_scene_2.on('mouse_exited', on_mouse_over2)
                
            mouse_over_scene_2.once('transitioning_finished', on_finished)
            ScrollTransition(mouse_over_scene_1, mouse_over_scene_2, 0, -1).start()
            
        mouse_over_button.on('mouse_entered', on_mouse_over)

        def on_mouse_over2(event, **kwargs):
            ScrollTransition(mouse_over_scene_2, mouse_over_scene_1, 0, 1).start()

        mouse_over_button.x = mouse_over_scene_1.width * 0.5 - mouse_over_button.width * 0.5
        mouse_over_button.y = 14
        
        menu1.add_child(button)
        menu1.add_child(next_scene)
        menu1.add_child(mouse_over_scene_1)