$(window).bind('load', function() {
  $('img.itemImage, img.indexItem').each(function() {
     if((typeof this.naturalWidth != "undefined" &&         this.naturalWidth == 0 )          || this.readyState == 'uninitialized' ) {
         $(this).attr('src', '/noimage.gif');
     }
 });
}) 

//http://www.jazoka.info/index.php?db=so&id=92720
