Today at work I ran across a helpful JQuery script you can use to pre-load images on a page. function preload(arrayOfImages) { $(arrayOfImages).each(function(){ $(”)[0].src = this; // Alternatively you could use: // (new Image()).src = this; }); } // Usage:…

New design.