/* This purpose of this function is to load unseen images into the local browser's cache for quick retreival.
It is commonly used in mouseover situations to prepare the images that are shown in the mouseover state.
The function takes an array of images and loads each one into local cache */


function fnPreloadImages(the_images_array) {
  for (loop = 0; loop < the_images_array.length; loop++) {
    var an_image = new Image();
	an_image.src = the_images_array[loop]
  }
}