Simple storyboard question... really simple

This should be really simple but I just don’t know how to do it. Right now I have a menu and a game screen. I took them from a template but now I don’t know how to switch back to the menu screen. All the levels in my game are based off of switching x,y variables. I tried storyboard.gotoScene( “menu”) because my menu is menu.lua but when i press the button to switch the physics just stop but there is no errors. I know I am probably forgetting something but I am new to corona and I don’t quite understand story boarding yet. Here’s my code if you want it:

[lua]local home = display.newImage(“home.png”)
home.width=60
home.height = 60
home.x = 400
home.y = 30

function home:touch( event )
storyboard.gotoScene( “menu”)
end
home:addEventListener(“touch”) [import]uid: 184688 topic_id: 33301 reply_id: 333301[/import]

I think:

home:addEventListener("touch")

should be:

home:addEventListener("touch", home)

I think:

home:addEventListener("touch")

should be:

home:addEventListener("touch", home)