function imagePatchIE() {
var imageLoadOk = true;
try {
for (var i = 0; i < document.images.length; i++) {
if (!document.images[i].mimeType) {
document.images[i].src = document.images[i].src;
imageLoadOk = false;
}
}
} catch(arg) {
imageLoadOk = false;
}
if (!imageLoadOk) setTimeout('imagePatchIE();', 5000);
}

if (document.all) setTimeout('imagePatchIE();', 1000);
