/*
 *  This configuration file provides input for the Image Browser html pages: thumbnails.html
 *  and showImage.html.  Define the list of images that will be displayed below.
 *
 *  Image Browser assumes that there are two folders, one for images, one for thumbnails,
 *  Each image has a hi-res file in ImagePath and a thumbnail in ThumbnailPath.  The 
 *  image file name is the same in both places.
 *
 *  Configuration variables set below:
 *  - ImagePath is the folder where images are stored.
 *  - ThumbnailPath is the folder where thumbnails are stored
 *  - ImageFileNames is an array containing image file names in the order they will be displayed.
 *
 *  The installation looks like this:
 *      root folder
 *        |__Images folder
 *        |__Thumbnails folder
 *        thumbnails.html
 *        showImage.html
 *        images.js
 */
 
var ImagePath = "./Images";
var ThumbnailPath = "./Thumbnails";
var ImageFileNames = new Array(
	"kk3_sculpt_nude_violet_4.png",
	"kk3_sculpt_nude_violet_9.png",
	"kk3_sculptL-20060409-132009.png",
	"kk3_sculptL-20060409-134530.png",  
	"kk3_sculpt_nude_violet_3.png",
	"kk3_sculptL-20060409-134017.png",
	"kk3_sculptL-20060409-133414.png",
	"kk3_sculptL-20060409-131617.png"
	);

