The case of loading each resource from the server will result in a new network connection per resource. A new connection could take 100ms just to get established because of latency even on fast network (10 resources == 1 second just for establishing connection.). It is advisable to break your resources into multiple different jars (you’ll have to play with size/count ratio a bit).
Dmitri