This document proposes using WebSockets to load images asynchronously to speed up page loading. It outlines how browsers currently load images synchronously over HTTP, causing long wait times. The author suggests establishing a WebSocket connection, sending all image src requests at once, and retrieving the binary image data asynchronously without waiting for each response. This approach could increase image loading speeds by 20-400% according to benchmarks. Open source ITW client and server code examples are provided to implement this technique.