/* ######################################################################### */
/*                                                                           */
/*  TITLE:        GIFTGUIDE.JS                                               */
/*  SITE:         coolhunting.com                                            */
/*  AUTHOR:       Brian Maniere                                              */
/*  VERSION:      1.0                                                       */
/*  LAST UPDATED: 2005/11/14                                                 */
/*                                                                           */
/*                                                                           */
/*  FUNCTION LIST: preloadImages()                                           */
/*                                                                           */
/* ######################################################################### */

arrImages = new Array(
	'title.gif'
);

				// define path for preloaded images
var imagePath = "images/"

				// arrImages and imagePath must be pre-defined elsewhere
function preloadImages() {
  for(var i=0; i < arrImages.length; i++) {
    var img = new Image();
    img.src = imagePath + arrImages[i];
  }
}