You be best to use jQuery and use the fadeIn and fadeOut functions. You can string together the fadeIn functions so that after one has loaded it moves to the next one.
jQuery('#div1').fadeIn('slow', function() {
jQuery('#div2').fadeIn('slow', function() {
//repeat for div3, div4, etc etc..
})
});
Also, for the background images, you just give each div an id and set the background images via CSS:
#div1 {
background-image: url(images/test.jpg);
width: 100px;
height: 100px;
background-repeat: none;
}
For the images inside the divs, just place them using HTML:
<div id="div1">
<img src='test.jpg' width='100' height='100' alt="test" />
</div>