/* ######################################################################### */
/*                                                                           */
/*  TITLE:        TROPOLISM.JS                                               */
/*  SITE:         tropolism.com                                              */
/*  AUTHOR:       Brian Maniere                                              */
/*  VERSION:      0.71                                                       */
/*  LAST UPDATED: 2005/07/21                                                 */
/*                                                                           */
/*                                                                           */
/*  FUNCTION LIST: preloadImages()                                           */
/*                                                                           */
/* ######################################################################### */

arrImages = new Array(
	'button_search.gif',
	'button_search_over.gif',
	'button_subscribe.gif',
	'button_subscribe_over.gif',
	'icon_arrow.gif',
	'icon_email.gif',
	'icon_perma.gif',
	'navShadow.gif',
	'icon_arrow.gif',
	'tropolism.gif',
	'bg_gray-white.gif'
);

				// define path for preloaded images
var imagePath = "http://www.tropolism.com/interface/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];
  }
}
