/*
 *  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(
	"pam2a_20090524-001620_s.jpg",
	"pam2a_20090523-232559_s.jpg",
	"pam2a_20090523-234048_s.jpg",
	"pam2a_20090531-141613_s.jpg",
	"pam2a_20090523-230632_s.jpg"
	);

