/*
 *  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(
	"legs_and_numbers_2.png",
	"pam_torso_6.png",
	"pam1-20080722-135803.png",
	"pam1-20080722-140857.png",
	"pam1-20080723-231033.png",
	"pam1-20080723-231151.png",
	"pam1-20080723-231319.png",
	"pam1-20080723-231753.png"
	);

