If they are css rollovers, you can just place the images right after the body tag in an absolutely positioned division that has its visibility set to hidden. If they are javascript rollovers, here is a simple way to preload. Place this script in the head of your page:
Code:
<script type="text/javascript">
(function(){
//Place all rollover images in the below array:
var roll_images=['over1.gif','over2.gif', 'over3.gif'];
///////////// Stop Editing /////////////
var p=[];
for (var i = 0; i < roll_images.length; i++){
p[i]=new Image();
p[i].src=roll_images[i];
};
})();
</script>
Bookmarks