I have this markup for the background image:
<img src="bg.jpg" id="bg" alt="">
and this css:
#bg { position: fixed; top: 0; left: 0; }
#bg {display:none;}
and this jquery:
$(document).ready(function(){
$('#bg').load(function() {
$(this).fadeIn('slow');
});
});
Basically it works, but the strange situation is that sometimes the image loads, sometimes not, sometimes I have to refresh the page few times. Take a look here to see what I'm talking about.