hello…
ahh – i see. well the wikipedia article is sort of related to what you’re asking then…you can’t control the order in which things are loaded on your page with css, and you really can’t control it in general. typically a dom will load your page from top to bottom, but it won’t wait for a given item to load before proceeding to load another…
there’s no good way to determine via scripting if an item is done loading, however you could potentially try to set up a timer system that used javascript to evaluate the dimensions of an image and then if they were the desired width and height, you could move on to another image…i saw a thread on it once but never tried anything with it. you could basically have an empty image tag or use a filler byte to hold a width and height – then swap the img src with javascript and track to see if the swapped in image has loaded – when it has, you can call a function to repeat the process but on another image on the page and so on and so on.
but outside of that, there’s no good way to control how things are loaded on your page outside of in a flash movie… :-/
sitruc