what is causing my pictures not to show up?

hello,

Im my app, the logo and button i have in will not show up in the simulator. Can someone please review my code to see if everything is fine?

Main.lua:

display.setStatusBar( display.HiddenStatusBar )  
local sky = display.newImage( "background.png", 0, 0 )  
local director = require("director")  
local mainGroup = display.newGroup()  
local function main()  
mainGroup:insert(director.directorView)  
director:changeScene("Menu")  
 return true  
end  
main()  

Menu.lua

module(..., package.seeall)  
local localGroup  
function new()  
 localGroup = display.newGroup()  
print( "menu" )  
  
local logo = display.newImage( "logo.png", 50, 50 )  
localGroup:insert(logo)  
  
local button = display.newImage( "Start.png" )  
local function buttont ( event )  
media.playEventSound( "tada.caf" )  
if event.phase == "ended" then  
 director:changeScene("page1","moveFromRight")  
 end  
 end  
 button:addEventListener("touch",buttont)  
 button.x = 170  
 button.y = 200  
 localGroup:insert(button)  
return localGroup  
end  

thanks in advance! [import]uid: 19836 topic_id: 8837 reply_id: 308837[/import]

Oh sorry guys i figured out my problem!!! Disregard this thread!!! [import]uid: 19836 topic_id: 8837 reply_id: 32190[/import]