Preloading is not likely to help. In fact it might hurt performance. Preloading, which downloads images in the background by creating an image object in JavaScript, is useful when the images are not initially displayed. For example mouseover images or on click images benefit from preloading. All of your images are part of the initial display so preloading won't speed things up.
I have seen some articles that contend loading one large image is faster than loading several small images. This suggests you could improve loading by combining the images in each column and those in the row on the bottom.
Many of your images are text with a background. You might consider using one background image in each box (a floated div) and using styled text. This would reduce the number of images and the size.
Otherwise, poor loading performance is the price of the design that relys heavily on images.
Main Topics
Browse All Topics





by: speak2abPosted on 2006-01-19 at 00:07:39ID: 15737005
you may have to write a script to handle that.