I'm far from being an expert on this subject but I have been playing around with some of the layouts in attractmode and customized them to my own personal preference. The subdirectories in the layout folders all have various purposes, depending on how the (original) designer put the layout together. For example, in my layout .nut file, I have this code:
//TV Background
local bg = fe.add_image("tv.png", flw*0.18, flh*0.270, flw*0.34, flh*0.470);
that means the "tv.png" is in the same layout folder (no subfolder) but if I wanted to, I could write the code like this
//TV Background
local bg = fe.add_image("images/tv.png", flw*0.18, flh*0.270, flw*0.34, flh*0.470);
In this case, the purpose and design is exactly the same, but that "tv.png" is not in the layout folder but it's now in a subfolder within it titled "images" which has been done to just to keep things a little more organized. This is a very very basic explanation but hope that it helps somehow
