﻿
$(document).ready(function() { 

  setTimeout(function(){ 
  
    $(".jq-dynamic-image").each(function() {
        if((typeof this.naturalWidth != "undefined" &&
            this.naturalWidth == 0 ) 
            || this.readyState == 'uninitialized' ) {
            $(this).hide();
        }
    });
    
  }, 1000 );
  
});
