//$.preloadImages("image1.gif", "/path/to/image2.png", "/image3.jpg");

jQuery.preloadImages = function() {
    jQuery.each (arguments,function (e) {
        jQuery("<img>").attr("src", this);
    });
}
