Possible Duplicate:
Controlling image load order in HTML
Is there a way to set the load priority or the loading sequence of images on a web site?
Possible Duplicate:
Controlling image load order in HTML
Is there a way to set the load priority or the loading sequence of images on a web site?
You could use jQuery and try sth. like that:
$(document).ready(function() {
var preloaded_image = $('<img />').attr('src', 'img.jpg');
$('#img_div').append(preloaded_image);
});
This should cause the images to load after the rest of the content.