Hope this helps! 
I have gave you the code below for one image to fall, but if you want 5 then you could just duplicate what i have gave you in the same function. Just change the names.
Ask if you have any questions.
Ok so this is what you need:
[code]
local function generateRandomThings()
– First call a this function
local circle = display.newImage “NameOfImage.png”
physics.addBody(circle)
– The two lines of code above is displaying and add physics to your object.
– Below gives the random positions of the object (You can change it)
circle.x = math.random(10, 460)
circle.y = -100
– Also gives a random rotation, thought you might like to see this. For more effect
circle.rotation = math.random(1,360)
circle.alpha = 0.8
end
–[[ The below code calls the function above, you can change
the time it’s 200 at the moment. Then “generateRandomThings”
calls it. 0 is indicating the function to call itself non-stop,
you can change it to any amount you like.]]
timer.performWithDelay(200,generateRandomThings,0)
[import]uid: 23689 topic_id: 21995 reply_id: 87416[/import]