 <!--

function doPreload() {

var the_images = new
Array('images/a3_hawaii_waterfall_bg_left.jpg','images/consoling_300_no_bg_top.jpg','images/consoling_300_no_bg_bottom.jpg');
preloadImages(the_images); }

function preloadImages(the_images_array) {

for(loop = 0; loop < the_images_array.length; loop++) { var an_image = new Image(); an_image.src = the_images_array[loop]; } }

--> 
