Hola, tengo un problema con un sitio. Tienen demasiadas imagenes y, por lo tanto, los navegadores me las van cargando de a pedazos y de a poco.
Entonces quiero hacerles una precarga a todas antes de entrar al sitio, ais se ve bien de una.
Encontre este codigo:

Código :

<script language="JavaScript1.1">
<!-- begin hiding


   var locationAfterPreload = "http://www.elsitio.html" 
   var lengthOfPreloadBar = 150 // Length of preload bar (in pixels)
   var heightOfPreloadBar = 5 // Height of preload bar (in pixels)
   var yourImages = new Array("http://www.elsitio.com/Imagenes/quienes_07.jpg","http://www.elsitio.com/Imagene/quienes_07.jpg")
// Do not modify anything beyond this point!
if (document.images) {
   var dots = new Array() 
   dots[0] = new Image(1,1)
   dots[0].src = "black.gif" // default preloadbar color (note: You can substitute it with your image, but it has to be 1x1 size)
   dots[1] = new Image(1,1)
   dots[1].src = "blue.gif" // color of bar as preloading progresses (same note as above)
   var preImages = new Array(),coverage = Math.floor(lengthOfPreloadBar/yourImages.length),currCount = 0
   var loaded = new Array(),i,covered,timerID
   var leftOverWidth = lengthOfPreloadBar%coverage
}
function loadImages() { 
   for (i = 0; i < yourImages.length; i++) { 
      preImages[i] = new Image()
      preImages[i].src = yourImages[i]
   }
   for (i = 0; i < preImages.length; i++) { 
      loaded[i] = false
   }
   checkLoad()
}
function checkLoad() {
   if (currCount == preImages.length) { 
      location.replace(locationAfterPreload)
      return
   }
   for (i = 0; i <= preImages.length; i++) {
      if (loaded[i] == false && preImages[i].complete) {
         loaded[i] = true
         eval("document.img" + currCount + ".src=dots[1].src")
         currCount++
      }
   }
   timerID = setTimeout("checkLoad()",10) 
}
// end hiding -->
</script>

Todo esto dentro del head.
y en el body

Código :

<script language="JavaScript1.1">
<!-- begin hiding
// It is recommended that you put a link to the target URL just in case if the visitor wants to skip preloading
// for some reason, or his browser doesn't support JavaScript image object.
if (document.images) {
   var preloadBar = ''
   for (i = 0; i < yourImages.length-1; i++) {
      preloadBar += '<img src="' + dots[0].src + '" width="' + coverage + '" height="' + heightOfPreloadBar + '" name="img' + i + '" align="absmiddle">'
   }
   preloadBar += '<img src="' + dots[0].src + '" width="' + (leftOverWidth+coverage) + '" height="' + heightOfPreloadBar + '" name="img' + (yourImages.length-1) + '" align="absmiddle">'
   document.write(preloadBar)
   loadImages()
}
document.write('<p><small><a href="javascript:window.location=locationAfterPreload">Saltar precarga</a></small></p>')
// end hiding -->
</script>

La verdad es que el codigo me funciona super bien....excepto en IE6.
No se porque se tarda mucho mas,a veces se cuelga, la barra de precarga no se anima y eso.
Alguien tiene alguna solucion???!?!?!