/*
 *  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(
	"left_wall_full.jpg",
	"projected_with_prints.jpg",
	"four_large_prints.jpg",
	"projected_1.jpg",
	"projected_2.jpg",
	"projected_3.jpg",
	// "video" images will link to a .mov file by the same name 
	// (in the same folder as the index.html)
	"video_blurbldg_fast.jpg",       
	"video_blurbldg_medium.jpg",
	"video_blurbldg_slow.jpg"
	);

