Dziudek
Problem fixed - it seems that the empty images in IE have no true in the complete property - I've changed code:
imagesToLoad.each(function(el,i){
if(el.complete) process++;
});
to:
imagesToLoad.each(function(el,i){
//if(el.complete)
process++;
});
and it helps