Does anybody know how to preload a file (image) so it is already loaded into the browser when the page is displayed? I'm using alot of background pictures in a css file and it is causing an attrotious "blink" every time it loads.
The javascript code:
var imagename = new Image();
imagename.src = "Images/image.jpg";
Does not work fast enough. Can anybody help?



