

// Write chronological index most recent first?
// ?? This is something that ought to be stored in a cookie.
var write_index_most_recent_first = true;
var draw_drop_shadows = true;

//
// Hashed table of information about specific images, indexed by image number (a text string).  
//
function image_info_item (image_no, image_fn, image_data, image_title, image_tw, image_th, image_iw, image_ih, thumb_suff, image_suff)
{
	// ?? XX
	// alert ("image_info_item A: " + image_no + " " +
		// "tw " + image_tw + "th " + image_th + "iw " + image_iw + "ih " + image_ih );
	this.image_no = image_no;		// A string, like 7_2005 80_176 6.  Unique.
	this.image_fn = image_fn;		// File name for image.
	this.image_data = image_data; 		// Arbitrary descriptive text for this image.
	this.image_title = image_title; 	// Image title.  Unique.

	// -1 to use width and height defined for the entire table as default. 
	this.image_tw = (image_tw != undefined) ? image_tw : -1;
	this.image_th = (image_th != undefined) ? image_th : -1;
	this.image_iw = (image_iw != undefined) ? image_iw : -1;
	this.image_ih = (image_ih != undefined) ? image_ih : -1;

	// alert ("image_info_item B: " + image_no + " " +
		// "tw " + this.image_tw + "th " + this.image_th + "iw " + this.image_iw + "ih " + this.image_ih );

	// Override "standard" image suffix, which is 800 for 6x7 and 1024 for 6x17 ..
	this.thumb_suff = (thumb_suff != undefined) ? thumb_suff : "";
	this.image_suff = (image_suff != undefined) ? image_suff : "";
}



// One entry for each image that we want to have descriptive "info" on..
// The table is extended dyanmically so it can be addressed by the "image_no" string.
var init_image_info_called = 0;
var image_info = [

	// Shelley's work. All need special image sizes.  They are from the .jpg files.
	new image_info_item ( "Peeling Paint", "SBS - Peeling - 22x25 WC s-rgb", "", "", 256, 236, 800, 737 ),
	new image_info_item ( "Pink And Green", "SBS - Pink And Green - 22x25 WC s-rgb", "", "", 256, 232, 800, 724 ),
	new image_info_item ( "Caducity", "SBS - Caducity - 25x15 WC s-rgb", "", "", 167, 256, 521, 800, "", "800"),
	new image_info_item ( "Decline", "SBS - Decline - 22x30 WC s-rgb", "", "", 256, 190, 800, 593 ),
	new image_info_item ( "Repose", "SBS - Repose - 25x32 WC s-rgb", "", "", 256, 201, 800, 628 ),
	new image_info_item ( "Meat Grinder", "SBS - Meat Grinder - 16x20 WC s-rgb", "", "", 256, 181, 800, 567 ),

	// All of everything else..
	new image_info_item ( "10_2000 4_60 3", "10_2000 4_60 3 work s-rgb", "", "" ),
	new image_info_item ( "10_2000 41_60 6", "10_2000 41_60 6 work s-rgb", "Water, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "10_2000 41_60 9", "10_2000 41_60 9 work s-rgb", "", "" ),
	new image_info_item ( "10_2000 44_60 5", "10_2000 44_60 5 work s-rgb", "Winter frost, dunes, Great Sand Dunes National Monument, CO", "Dunes, CO, #3" ),
	new image_info_item ( "10_2000 46_60 3", "10_2000 46_60 3 work s-rgb", "Water, Smoke Creek Desert, NV", "Water, Smoke Creek Desert NV, #3" ),
	new image_info_item ( "10_2000 31_60 2", "10_2000 31_60 2 work s-rgb", "Black Rock Desert, NV", "" ),
	new image_info_item ( "10_2000 32_60 3", "10_2000 32_60 3 work s-rgb", "Black Rock Desert, NV", "Dawn, Black Rock Desert, NV #2" ),
	new image_info_item ( "10_2000 34_60 3", "10_2000 34_60 3 work s-rgb", "", "" ),
	new image_info_item ( "10_2000 37_60 1", "10_2000 37_60 1 ft-on rev2 work s-rgb", "", "" ),
	new image_info_item ( "10_2000 38_60 4", "10_2000 38_60 4 ft-on work s-rgb", "", "" ),

	new image_info_item ( "11_98 1_80 2", "11_98 1_80 2 work s-rgb", "", "" ),
	new image_info_item ( "11_98 4_80 6", "11_98 4_80 6 work s-rgb", "", "" ),
	new image_info_item ( "11_98 6_80 9", "11_98 6_80 9 work s-rgb", "", "" ),
	new image_info_item ( "11_98 16_80 7", "11_98 16_80 7 work s-rgb", "Salt and mud, Death Valley, CA", "" ),
	new image_info_item ( "11_98 18_80 7", "11_98 18_80 7 work s-rgb", "", "" ),
	new image_info_item ( "11_98 20_80 7", "11_98 20_80 7 lab work s-rgb", "Zabriskie Point, Death Valley, CA", "Zabriskie Point, #3" ),
	new image_info_item ( "11_98 29_80 3", "11_98 29_80 3 work s-rgb", "", "" ),
	new image_info_item ( "11_98 36_80 1", "11_98 36_80 1 work s-rgb", "", "" ),
	new image_info_item ( "11_98 46_80 4", "11_98 46_80 4 work s-rgb", "", "" ),
	new image_info_item ( "11_98 49_80 1", "11_98 49_80 1 work s-rgb", "", "" ),
	new image_info_item ( "11_98 56_80 2", "11_98 56_80 2 work s-rgb", "", "" ),
	new image_info_item ( "11_98 67_80 3", "11_98 67_80 3 s-rgb", "Water, Badwater, Death Valley, CA", "Badwater, Death Valley, CA, #1"  ),

	new image_info_item ( "1_2000 1_22 1", "1_2000 1_22 1 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 2_22 5", "1_2000 2_22 5 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 3_22 3", "1_2000 3_22 3 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 4_22 3", "1_2000 4_22 3 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 5_22 6", "1_2000 5_22 6 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 6_22 3", "1_2000 6_22 3 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 7_22 6", "1_2000 7_22 6 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 7_22 7", "1_2000 7_22 7 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 8_22 8", "1_2000 8_22 8 work s-rgb", "", "" ),
	new image_info_item ( "1_2000 9_22 4", "1_2000 9_22 4 work s-rgb", "", "" ),

	new image_info_item ( "2_2002 71_145 1", "2_2002 71_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 72_145 10", "2_2002 72_145 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 73_145 8", "2_2002 73_145 8 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 80_145 3", "2_2002 80_145 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 82_145 3", "2_2002 82_145 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 83_145 9", "2_2002 83_145 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 144_145 5", "2_2002 144_145 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 145_145 4", "2_2002 145_145 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 8_145 3", "2_2002 8_145 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 14_145 4", "2_2002 14_145 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 15_145 4", "2_2002 15_145 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 18_145 4", "2_2002 18_145 4 work s-rgb", "Water, Badwater, Death Valley, CA", "" ),
	new image_info_item ( "2_2002 19_145 1", "2_2002 19_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 21_145 1", "2_2002 21_145 1 ft-on rev3 s-rgb", "Water on Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2_2002 22_145 1", "2_2002 22_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 23_145 3", "2_2002 23_145 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 25_145 1", "2_2002 25_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 26_145 1", "2_2002 26_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 29_145 2", "2_2002 29_145 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 30_145 4", "2_2002 30_145 4 s-rgb", "Salt flats near Badwater, Death Valley, CA", "" ),
	new image_info_item ( "2_2002 32_145 4", "2_2002 32_145 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 34_145 4", "2_2002 34_145 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 36_145 4", "2_2002 36_145 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 37_145 3", "2_2002 37_145 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 48_145 1", "2_2002 48_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 59_145 1", "2_2002 59_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 90_145 2", "2_2002 90_145 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 95_145 2", "2_2002 95_145 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 102_145 3", "2_2002 102_145 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 107_145 1", "2_2002 107_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 111_145 3", "2_2002 111_145 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 119_145 4", "2_2002 119_145 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 122_145 4", "2_2002 122_145 4 ft-on rev2 s-rgb", "Rain storm, Smoke Creek Desert, NV", "Thunderstorm, Smoke Creek Desert, NV, #3" ),
	new image_info_item ( "2_2002 123_145 1", "2_2002 123_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 126_145 1", "2_2002 126_145 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2002 142_145 4", "2_2002 142_145 4 work s-rgb", "", "" ),

	new image_info_item ( "2_98 2_33 2", "2_98 2_33 2 work s-rgb", "", "" ),
	new image_info_item ( "2_98 2_33 9", "2_98 2_33 9 work s-rgb", "", "" ),
	new image_info_item ( "2_98 3_1_33 9", "2_98 3_1_33 9 rev3 clean work s-rgb", "Clouds, Kelso Dunes, Mojave Desert, CA", "Cold Winter Storm, Mojave Desert CA, #2" ),
	new image_info_item ( "2_98 3_33 1", "2_98 3_33 1 work s-rgb", "", "" ),
	new image_info_item ( "2_98 3_33 9", "2_98 3_33 9 work s-rgb", "", "" ),
	new image_info_item ( "2_98 4_33 10", "2_98 4_33 10 work s-rgb", "Dry Lake near Zzyzx, CA", "" ),
	new image_info_item ( "2_98 5_33 5", "2_98 5_33 5 work s-rgb", "", "" ),
	new image_info_item ( "2_98 6_33 3", "2_98 6_33 3 work s-rgb", "", "" ),
	new image_info_item ( "2_98 8_33 3", "2_98 8_33 3 work s-rgb", "", "" ),
	new image_info_item ( "2_98 9_33 4", "2_98 9_33 4 work s-rgb", "", "" ),
	new image_info_item ( "2_98 11_33 5", "2_98 11_33 5 work s-rgb", "", "" ),

	new image_info_item ( "3_2000 3_44 9", "3_2000 3_44 9 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 6_44 3", "3_2000 6_44 3 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 8_44 1", "3_2000 8_44 1 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 16_44 3", "3_2000 16_44 3 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 20_44 6", "3_2000 20_44 6 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 20_44 9", "3_2000 20_44 9 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 21_44 1", "3_2000 21_44 1 work s-rgb", "Dunes, Death Valley, CA", "" ),
	new image_info_item ( "3_2000 22_44 9", "3_2000 22_44 9 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 23_44 6", "3_2000 23_44 6 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 29_44 6", "3_2000 29_44 6 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 32_44 6", "3_2000 32_44 6 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 34_44 8", "3_2000 34_44 8 work s-rgb", "Racetrack, Death Valley, CA", "" ),
	new image_info_item ( "3_2000 35_44 4", "3_2000 35_44 4 work s-rgb", "Racetrack, Death Valley, CA", "" ),
	new image_info_item ( "3_2000 35_44 9", "3_2000 35_44 9 work s-rgb", "", "" ),
	new image_info_item ( "3_2000 38_44 2", "3_2000 38_44 2 work s-rgb", "", "" ),

	new image_info_item ( "3_2001 2_45 7", "3_2001 2_45 7 work s-rgb", "Badwater, Death Valley, CA", "" ),
	new image_info_item ( "3_2001 7_45 8", "3_2001 7_45 8 work s-rgb", "Zabriskie Point, Death Valley, CA", "" ),
	new image_info_item ( "3_2001 22_45 3", "3_2001 22_45 3 work s-rgb", "", "" ),
	new image_info_item ( "3_2001 23_45 6", "3_2001 23_45 6 work s-rgb", "Sand, Death Valley, CA", "" ),
	new image_info_item ( "3_2001 36_45 10", "3_2001 36_45 10 work s-rgb", "Dunes, Death Valley, CA", "" ),
	new image_info_item ( "3_2001 38_45 8", "3_2001 38_45 8 work s-rgb", "", "" ),
	new image_info_item ( "3_2001 40_45 3", "3_2001 40_45 3 work s-rgb", "", "" ),
	new image_info_item ( "3_2001 40_45 8", "3_2001 40_45 8 work s-rgb", "", "" ),
	new image_info_item ( "3_2001 41_45 5", "3_2001 41_45 5 work s-rgb", "", "" ),

	new image_info_item ( "3_97 1_26 3", "3_97 1_26 3 work s-rgb", "", "" ),
	new image_info_item ( "3_97 2_26 3", "3_97 2_26 3 work s-rgb", "US 58 near Bakersfield, CA", "" ),
	new image_info_item ( "3_97 5_26 5", "3_97 5_26 5 work s-rgb", "", "" ),
	new image_info_item ( "3_97 5_26 7", "3_97 5_26 7 work s-rgb", "", "" ),
	new image_info_item ( "3_97 6_26 7", "3_97 6_26 7 work s-rgb", "", "" ),
	new image_info_item ( "3_97 14_26 6", "3_97 14_26 6 work s-rgb", "", "" ),
	new image_info_item ( "3_97 15_26 7", "3_97 15_26 7 work s-rgb", "Palms, Zzyzx, Mojave Desert, CA", "" ),
	new image_info_item ( "3_97 19_26 8", "3_97 19_26 8 work s-rgb", "", "" ),

	new image_info_item ( "3_98 1_29 5", "3_98 1_29 5 work s-rgb", "", "" ),
	new image_info_item ( "3_98 1_29 9", "3_98 1_29 9 work s-rgb", "", "" ),
	new image_info_item ( "3_98 2_29 3", "3_98 2_29 3 work s-rgb", "", "" ),
	new image_info_item ( "3_98 2_29 4", "3_98 2_29 4 rev2 work s-rgb", "Dunes, Death Valley, CA", "Dunes, Death Valley CA, #1" ),
	new image_info_item ( "3_98 3_29 10", "3_98 3_29 10 work s-rgb", "", "" ),
	new image_info_item ( "3_98 4_29 1", "3_98 4_29 1 work s-rgb", "Badwater, Death Valley, CA", "" ),

	new image_info_item ( "3_99 2_70 7", "3_99 2_70 7 work s-rgb", "", "" ),
	new image_info_item ( "3_99 3_70 7", "3_99 3_70 7 work s-rgb", "", "" ),
	new image_info_item ( "3_99 5_70 7", "3_99 5_70 7 work s-rgb", "", "" ),
	new image_info_item ( "3_99 6_70 3", "3_99 6_70 3 work s-rgb", "", "" ),
	new image_info_item ( "3_99 7_70 6", "3_99 7_70 6 work s-rgb", "", "" ),
	new image_info_item ( "3_99 13_70 1", "3_99 13_70 1 work s-rgb", "", "" ),
	new image_info_item ( "3_99 24_70 4", "3_99 24_70 4 work s-rgb", "", "" ),
	new image_info_item ( "3_99 24_70 7", "3_99 24_70 7 work s-rgb", "", "" ),
	new image_info_item ( "3_99 38_70 1", "3_99 38_70 1 work s-rgb", "", "" ),
	new image_info_item ( "3_99 39_70 3", "3_99 39_70 3 work s-rgb", "", "" ),
	new image_info_item ( "3_99 40_70 1", "3_99 40_70 1 work s-rgb", "", "" ),
	new image_info_item ( "3_99 40_70 6", "3_99 40_70 6 work s-rgb", "", "" ),
	new image_info_item ( "3_99 53_70 7", "3_99 53_70 7 work s-rgb", "", "" ),
	new image_info_item ( "3_99 70_70 4", "3_99 70_70 4 work s-rgb", "", "" ),
	new image_info_item ( "3_99 30_70 3", "3_99 30_70 3 s-rgb", "Salt flats near Badwater, Death Valley, CA", "" ),
	new image_info_item ( "3_99 57_70 4", "3_99 57_70 4 s-rgb", "Mojave Desert near Baker, CA", "" ),

	new image_info_item ( "5_2001 7_97 4", "5_2001 7_97 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 11_97 6", "5_2001 11_97 6 work s-rgb", "Sandstone, Paria Wilderness, AZ", "" ),
	new image_info_item ( "5_2001 15_97 4", "5_2001 15_97 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 18_97 6", "5_2001 18_97 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 18_97 7", "5_2001 18_97 7 work s-rgb", "Sand, Vermilion Cliffs, AZ", "" ),
	new image_info_item ( "5_2001 18_97 8", "5_2001 18_97 8 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 19_97 1", "5_2001 19_97 1 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 19_97 4", "5_2001 19_97 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 25_97 10", "5_2001 25_97 10 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 31_97 6", "5_2001 31_97 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 34_97 3", "5_2001 34_97 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 37_97 3", "5_2001 37_97 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2001 57_97 2", "5_2001 57_97 2 work s-rgb", "", "" ),

	new image_info_item ( "5_98 4_25 2", "5_98 4_25 2 work s-rgb", "Sunset and Rocky Mountains from Flatirons, Boulder CO", "" ),
	new image_info_item ( "5_98 4_25 4", "5_98 4_25 4 s-rgb", "Sunset and Rocky Mountains from Flatirons, Boulder CO", "" ),

	new image_info_item ( "5_99 1_91 8", "5_99 1_91 8 work s-rgb", "", "" ),
	new image_info_item ( "5_99 2_91 4", "5_99 2_91 4 work s-rgb", "", "" ),
	new image_info_item ( "5_99 3_91 4", "5_99 3_91 4 work s-rgb", "", "" ),
	new image_info_item ( "5_99 4_91 6", "5_99 4_91 6 work s-rgb", "", "" ),
	new image_info_item ( "5_99 4_91 7", "5_99 4_91 7 work s-rgb", "", "" ),
	new image_info_item ( "5_99 5_91 9", "5_99 5_91 9 work s-rgb", "Wind, dunes, Great Sand Dunes National Monument, CO", "" ),

	new image_info_item ( "8_2001 33_107 3", "8_2001 33_107 3 ft-on work s-rgb", "", "" ),
	new image_info_item ( "8_2001 96_107 4", "8_2001 96_107 4 ft-on work s-rgb", "Rain showers, San Luis Valley, CO", "" ),
	new image_info_item ( "8_2001 101_107 1", "8_2001 101_107 1 work s-rgb", "", "" ),
	new image_info_item ( "8_2001 101_107 4", "8_2001 101_107 4 work s-rgb", "", "" ),
	new image_info_item ( "8_2001 103_107 2", "8_2001 103_107 2 ft-on rev3 s-rgb", "Rain storm, San Luis Valley, CO", "Rain storm, San Luis Valley, CO, #2" ),

	new image_info_item ( "8_98 28_38 7", "8_98 28_38 7 work s-rgb", "", "" ),
	new image_info_item ( "8_98 31_38 3", "8_98 31_38 3 work s-rgb", "", "" ),
	new image_info_item ( "8_98 31_38 6", "8_98 31_38 6 work s-rgb", "", "" ),
	new image_info_item ( "8_98 31_38 9", "8_98 31_38 9 work s-rgb", "", "" ),
	new image_info_item ( "8_98 33_38 6", "8_98 33_38 6 work s-rgb", "", "" ),
	new image_info_item ( "8_98 34_38 8", "8_98 34_38 8 work s-rgb", "", "" ),
	new image_info_item ( "8_98 5_38 4", "8_98 5_38 4 work s-rgb", "", "" ),
	new image_info_item ( "8_98 6_38 1", "8_98 6_38 1 work s-rgb", "", "" ),

	new image_info_item ( "8_99 1_20 6", "8_99 1_20 6 auto", "", "" ),
	new image_info_item ( "8_99 1_20 ", "8_99 1_20 6", "", "" ),
	new image_info_item ( "8_99 2_20 ", "8_99 2_20 7", "", "" ),
	new image_info_item ( "9_99 16_41 5", "9_99 16_41 5 work s-rgb", "", "" ),

	new image_info_item ( "9_99 22_41 4", "9_99 22_41 4 lab work s-rgb", "Dunes, Great Sand Dunes National Monument, CO", "Dunes, CO, #2" ),
	new image_info_item ( "9_99 25_41 1", "9_99 25_41 1 work s-rgb", "", "" ),
	new image_info_item ( "9_99 27_41 3", "9_99 27_41 3 work s-rgb", "", "" ),
	new image_info_item ( "9_99 27_41 8", "9_99 27_41 8 work s-rgb", "", "" ),
	new image_info_item ( "9_99 32_41 3", "9_99 32_41 3 work s-rgb", "", "" ),


	// All of 7_2002 images.. 
	new image_info_item ( "7_2002 29_129 6", "7_2002 29_129 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 35_129 8", "7_2002 35_129 8 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 36_129 5", "7_2002 36_129 5 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 106_129 3", "7_2002 106_129 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 107_129 9", "7_2002 107_129 9 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 122_129 1", "7_2002 122_129 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 123_129 5", "7_2002 123_129 5 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 126_129 7", "7_2002 126_129 7 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 109_129 2", "7_2002 109_129 2 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 109_129 4", "7_2002 109_129 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 110_129 8", "7_2002 110_129 8 work s-rgb", "Shot up car, Dixie Valley, NV", "Shot Up Car, Dixie Valley NV, #1" ),
	new image_info_item ( "7_2002 111_129 6", "7_2002 111_129 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 111_129 9", "7_2002 111_129 9 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 88_129 10", "7_2002 88_129 10 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 90_129 6", "7_2002 90_129 6 work s-rgb", "Stone House, Spring Valley, NV", "" ),
	new image_info_item ( "7_2002 91_129 10", "7_2002 91_129 10 work s-rgb", "Stone House, Spring Valley, NV", "" ),
	new image_info_item ( "7_2002 50_129 2", "7_2002 50_129 2 ft-on rev3 s-rgb", "Near Blue Lake, Great Salt Desert, UT", "" ),
	new image_info_item ( "7_2002 52_129 1", "7_2002 52_129 1 rev3 s-rgb", "Near Blue Lake, Great Salt Desert, UT", "" ),
	new image_info_item ( "7_2002 63_129 1", "7_2002 63_129 1 rev3 s-rgb", "Great Salt Desert, UT", "Salt Flats, UT, #2"  ),
	new image_info_item ( "7_2002 95_129 3", "7_2002 95_129 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 95_129 6", "7_2002 95_129 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 97_129 9", "7_2002 97_129 9 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 99_129 4", "7_2002 99_129 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 99_129 9", "7_2002 99_129 9 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 101_129 8", "7_2002 101_129 8 work s-rgb", "Road cut, Connors Pass, Ely NV", "" ),
	new image_info_item ( "7_2002 102_129 8", "7_2002 102_129 8 work s-rgb", "Road cut, Connors Pass, Ely NV", "" ),
	new image_info_item ( "7_2002 56_129 10", "7_2002 56_129 10", "Great Salt Desert, UT", "" ),
	new image_info_item ( "7_2002 57_129 4", "7_2002 57_129 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 58_129 9", "7_2002 58_129 9 work s-rgb", "Great Salt Desert, UT", "" ),
	new image_info_item ( "7_2002 15_129 6", "7_2002 15_129 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 18_129 6", "7_2002 18_129 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 19_129 3", "7_2002 19_129 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2002 86_129 3", "7_2002 86_129 3 work s-rgb", "Sand Pass, Smoke Creek Desert, NV", "Clouds, Smoke Creek Desert, #1" ),


	// All of 8_2002 images.. 
	new image_info_item ( "8_2002 7_115 3", "8_2002 7_115 3 work s-rgb", "Sand, Great Sand Dunes NM, CO", "Dune Base, CO, #2" ),
	new image_info_item ( "8_2002 25_115 3", "8_2002 25_115 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2002 44_115 5", "8_2002 44_115 5 work s-rgb", "", "" ),
	new image_info_item ( "8_2002 47_115 9", "8_2002 47_115 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2002 54_115 5", "8_2002 54_115 5 work s-rgb", "", "" ),
	new image_info_item ( "8_2002 59_115 7", "8_2002 59_115 7 work s-rgb", "", "" ),
	new image_info_item ( "8_2002 76_115 7", "8_2002 76_115 7 work s-rgb", "Coal tipple, Reliance, WY", "" ),
	new image_info_item ( "8_2002 77_115 7", "8_2002 77_115 7 work s-rgb", "Coal tipple, Reliance, WY", "" ),
	new image_info_item ( "8_2002 79_115 6", "8_2002 79_115 6 work s-rgb", "Coal tipple, Reliance, WY", "" ),
	new image_info_item ( "8_2002 82_115 1", "8_2002 82_115 1 work s-rgb", "", "" ),


	// All of 11_2002 images.. 
	new image_info_item ( "11_2002 3_60 1", "11_2002 3_60 1 work s-rgb", "Salt and mud, Death Valley, CA", "" ),
	new image_info_item ( "11_2002 4_60 3", "11_2002 4_60 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2002 17_60 5", "11_2002 17_60 5 work s-rgb", "", "" ),
	new image_info_item ( "11_2002 23_60 7", "11_2002 23_60 7 work s-rgb", "Badwater, Death Valley, CA", "" ),
	new image_info_item ( "11_2002 28_60 9", "11_2002 28_60 9 work s-rgb", "Dunes, Death Valley, CA", "" ),
	new image_info_item ( "11_2002 33_60 8", "11_2002 33_60 8 work s-rgb", "Racetrack, Death Valley, CA", "" ),
	new image_info_item ( "11_2002 35_60 3", "11_2002 35_60 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2002 38_60 3", "11_2002 38_60 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2002 46_60 3", "11_2002 46_60 3 work s-rgb", "Shot up car, Dixie Valley, NV", "Shot Up Car, Dixie Valley NV, #2"  ),
	new image_info_item ( "11_2002 46_60 8", "11_2002 46_60 8 work s-rgb", "Shot up car, Dixie Valley, NV", "" ),
	new image_info_item ( "11_2002 48_60 9", "11_2002 48_60 9 work s-rgb", "Shot up car, Dixie Valley, NV", "" ),
	new image_info_item ( "11_2002 49_60 3", "11_2002 49_60 3 work s-rgb", "Shot up car, Dixie Valley, NV", "Shot Up Car, Dixie Valley NV, #1" ),
	new image_info_item ( "11_2002 52_60 4", "11_2002 52_60 4 work s-rgb", "", "" ),
	new image_info_item ( "11_2002 52_60 7", "11_2002 52_60 7 work s-rgb", "Kelso Dunes, Mojave Desert, CA", "" ),
	new image_info_item ( "11_2002 53_60 3", "11_2002 53_60 3 work s-rgb", "Kelso Dunes, Mojave Desert, CA", "" ),


	// All of 2_2003 images.. 
	new image_info_item ( "2_2003 3_163 4", "2_2003 3_163 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2003 9_163 10", "2_2003 9_163 10 work s-rgb", "Water, Smoke Creek Desert, NV", "Water, Smoke Creek Desert NV, #5" ),
	new image_info_item ( "2_2003 11_163 8", "2_2003 11_163 8 work s-rgb", "Water, Smoke Creek Desert, NV", "Water, Smoke Creek Desert NV, #2" ),


	// All of 3_2003 images.. 
	new image_info_item ( "3_2003 2_163 9", "3_2003 2_163 9 work s-rgb", "Mud, Mojave Desert, CA", "" ),
	new image_info_item ( "3_2003 13_163 2", "3_2003 13_163 2 work s-rgb", "Shot up car, unknown location, NV", "" ),
	new image_info_item ( "3_2003 17_163 9", "3_2003 17_163 9 work s-rgb", "", "" ),
	new image_info_item ( "3_2003 29_163 5", "3_2003 29_163 5 work s-rgb", "Corrugated metal, Bonham ranch, NV", "Sheet Metal, Smoke Creek Desert NV" ),
	new image_info_item ( "3_2003 38_163 5", "3_2003 38_163 5 work s-rgb", "Mine, Hogum, NV", "" ),
	new image_info_item ( "3_2003 64_163 3", "3_2003 64_163 3 work s-rgb", "Corrugated metal, Osceola, NV", "" ),
	new image_info_item ( "3_2003 75_163 1", "3_2003 75_163 1 work s-rgb", "", "" ),
	new image_info_item ( "3_2003 99_163 9", "3_2003 99_163 9 work s-rgb", "", "" ),
	new image_info_item ( "3_2003 108_163 1", "3_2003 108_163 1 work s-rgb", "", "" ),
	new image_info_item ( "3_2003 110_163 2", "3_2003 110_163 2 work s-rgb", "", "" ),
	new image_info_item ( "3_2003 112_163 1", "3_2003 112_163 1 rev4 s-rgb", "Water on Smoke Creek Desert, NV", "Water, Smoke Creek Desert, NV, #7"  ),
	new image_info_item ( "3_2003 114_163 4", "3_2003 114_163 4 clean rev2 s-rgb", "Water on Smoke Creek Desert, NV", "" ),


	// All of 5_2003 images.. 
	new image_info_item ( "5_2003 20_103 3", "5_2003 20_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2003 26_103 8", "5_2003 26_103 8 work s-rgb", "", "" ),
	new image_info_item ( "5_2003 27_103 3", "5_2003 27_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2003 28_103 8", "5_2003 28_103 8 work s-rgb", "", "" ),
	new image_info_item ( "5_2003 30_103 9", "5_2003 30_103 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2003 31_103 9", "5_2003 31_103 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2003 32_103 4", "5_2003 32_103 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2003 39_103 2", "5_2003 39_103 2 work s-rgb", "", "" ),
	new image_info_item ( "5_2003 51_103 2", "5_2003 51_103 2 work s-rgb", "", "" ),


	// All of 8_2003 images.. 
	new image_info_item ( "8_2003 19_145 8", "8_2003 19_145 8 work s-rgb", "Black Rock Desert, NV", "" ),
	new image_info_item ( "8_2003 28_245 6", "8_2003 28_245 6 work s-rgb", "Sand Pass, Smoke Creek Desert, NV", "Thunderstorm, Smoke Creek Desert NV, #2" ),
	new image_info_item ( "8_2003 33_145 8", "8_2003 33_145 8 work s-rgb", "Bruneau Dunes State Park, ID", "" ),
	new image_info_item ( "8_2003 53_145 3", "8_2003 53_145 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2003 58_145 9", "8_2003 58_145 9 work s-rgb", "Shot up car, Dixie Valley, NV", "Shot Up Car, Dixie Valley NV, #4" ),
	new image_info_item ( "8_2003 60_145 9", "8_2003 60_145 9 work s-rgb", "Shot up car, Dixie Valley, NV", "" ),
	new image_info_item ( "8_2003 73_145 7", "8_2003 73_145 7 work s-rgb", "Abandoned Motel, Nevada", "Motel Room, Nevada, #4" ),
	new image_info_item ( "8_2003 74_145 3", "8_2003 74_145 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2003 84_145 9", "8_2003 84_145 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2003 85_145 6", "8_2003 85_145 6 work s-rgb", "", "" ),
	new image_info_item ( "8_2003 95_145 5", "8_2003 95_145 5 work s-rgb", "", "" ),
	new image_info_item ( "8_2003 104_145 10", "8_2003 104_145 10 lab work s-rgb", "Building foundation, Hamilton, NV", "Foundation, Hamilton NV, #2" ),
	new image_info_item ( "8_2003 115_145 9", "8_2003 115_145 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2003 117_145 8", "8_2003 117_145 8 work s-rgb", "", "" ),
	new image_info_item ( "8_2003 118_145 1", "8_2003 118_145 1 work s-rgb", "", "" ),
	new image_info_item ( "8_2003 119_145 4", "8_2003 119_145 4 work s-rgb", "Rain near Hamilton, NV", "Rain, Hamilton NV, #2" ),
	new image_info_item ( "8_2003 139_145 6", "8_2003 139_145 6 work s-rgb", "", "" ),


	// All of 2_2004 images.. 
	new image_info_item ( "2_2004 61_80 9", "2_2004 61_80 9", "", "" ),
	new image_info_item ( "2_2004 63_80 4", "2_2004 63_80 4", "", "" ),
	new image_info_item ( "2_2004 64_80 9", "2_2004 64_80 9", "", "" ),
	new image_info_item ( "2_2004 66_80 4", "2_2004 66_80 4", "", "" ),
	new image_info_item ( "2_2004 72_80 1", "2_2004 72_80 1", "", "" ),
	new image_info_item ( "2_2004 72_80 7", "2_2004 72_80 7", "", "" ),
	new image_info_item ( "2_2004 76_80 1", "2_2004 76_80 1", "", "" ),
	new image_info_item ( "2_2004 12_80 3", "2_2004 12_80 3 pano 3 clean s-rgb", "Winter, Mono Lake, CA", "" ),
	new image_info_item ( "2_2004 13_80 3", "2_2004 13_80 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2004 14_80 3", "2_2004 14_80 3 pano 4 clean s-rgb", "Winter, Mono Lake, CA", "Winter, Mono Lake, CA, #2"  ),
	new image_info_item ( "2_2004 19_80 2", "2_2004 19_80 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2004 21_80 2", "2_2004 21_80 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2004 23_80 1", "2_2004 23_80 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2004 26_80 4", "2_2004 26_80 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2004 28_80 2", "2_2004 28_80 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2004 31_80 3", "2_2004 31_80 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2004 53_80 4", "2_2004 53_80 4 work s-rgb", "", "" ),


	// All of 6_2004 (Florida Keys) images.. 
	new image_info_item ( "2004_06 3_35 1", "2004_06 3_35 1 work s-rgb", "", "" ),
	new image_info_item ( "2004_06 5_35 3", "2004_06 5_35 3 work s-rgb", "", "" ),
	new image_info_item ( "2004_06 6_35 1", "2004_06 6_35 1 work s-rgb", "", "" ),
	new image_info_item ( "2004_06 11_35 1", "2004_06 11_35 1 work s-rgb", "", "" ),
	new image_info_item ( "2004_06 19_35 1", "2004_06 19_35 1 work s-rgb", "", "" ),


	// All of 6_2004 images.. 
	new image_info_item ( "6_2004 2_126 4", "6_2004 2_126 4 work s-rgb", "", "" ),


	// All of 8_2004 images.. 
	new image_info_item ( "8_2004 125_237 7", "8_2004 125_237 7 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 125_237 10", "8_2004 125_237 10 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 129_237 9", "8_2004 129_237 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 131_237 9", "8_2004 131_237 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 132_237 6", "8_2004 132_237 6 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 135_237 1", "8_2004 135_237 1 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 135_237 4", "8_2004 135_237 4 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 99_237 3", "8_2004 99_237 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 113_237 6", "8_2004 113_237 6 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 136_237 2", "8_2004 136_237 2 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 161_237 7", "8_2004 161_237 7 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 168_237 3", "8_2004 168_237 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 168_237 8", "8_2004 168_237 8 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 172_237 4", "8_2004 172_237 4 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 172_237 7", "8_2004 172_237 7 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 174_237 7", "8_2004 174_237 7 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 174_237 10", "8_2004 174_237 10 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 175_237 10", "8_2004 175_237 10 work s-rgb", "Abandoned court house, Belmont, NV", "" ),
	new image_info_item ( "8_2004 179_237 9", "8_2004 179_237 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 181_237 4", "8_2004 181_237 4 work s-rgb", "Abandoned court house, Belmont, NV", "" ),
	new image_info_item ( "8_2004 182_237 9", "8_2004 182_237 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 183_237 6", "8_2004 183_237 6 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 183_237 9", "8_2004 183_237 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 185_237 6", "8_2004 185_237 6 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 187_237 2", "8_2004 187_237 2 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 7_237 7", "8_2004 7_237 7 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 9_237 2", "8_2004 9_237 2 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 10_237 4", "8_2004 10_237 4 work s-rgb", "Shot up car, Dixie Valley, NV", "Shot Up Car, Dixie Valley NV, #3" ),
	new image_info_item ( "8_2004 10_237 8", "8_2004 10_237 8 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 14_237 8", "8_2004 14_237 8 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 15_237 4", "8_2004 15_237 4 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 15_237 8", "8_2004 15_237 8 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 16_237 3", "8_2004 16_237 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 37_237 4", "8_2004 37_237 4 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 100_237 3", "8_2004 100_237 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 105_237 1", "8_2004 105_237 1 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 107_237 3", "8_2004 107_237 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2004 108_237 3", "8_2004 108_237 3 work s-rgb", "", "" ),


	// All of 9_2004 (Belle Isle Power Plant, Richmond VA) images.. 
	new image_info_item ( "9_2004 1_7 1", "9_2004 1_7 1 work s-rgb", "Belle Isle Power Plant, Richmond VA", "" ),
	new image_info_item ( "9_2004 1_7 6", "9_2004 1_7 6 work s-rgb", "Belle Isle Power Plant, Richmond VA", "" ),
	new image_info_item ( "9_2004 3_7 3", "9_2004 3_7 3 work s-rgb", "Belle Isle Power Plant, Richmond VA", "" ),
	new image_info_item ( "9_2004 4_7 3", "9_2004 4_7 3 work s-rgb", "Belle Isle Power Plant, Richmond VA", "" ),
	new image_info_item ( "9_2004 4_7 7", "9_2004 4_7 7 work s-rgb", "Belle Isle Power Plant, Richmond VA", "" ),
	new image_info_item ( "9_2004 7_7 10", "9_2004 7_7 10 work s-rgb", "Belle Isle Power Plant, Richmond VA", "" ),

	// All of 11_2004 (NZ) images.. 
	new image_info_item ( "11_2004 9_65 4", "11_2004 9_65 4 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 14_65 1", "11_2004 14_65 1 work s-rgb", "Moeraki Boulders, South Island, New Zealand", "Moeraki Boulders, South Island, New Zealand, #2" ),
	new image_info_item ( "11_2004 17_65 3", "11_2004 17_65 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 19_65 4", "11_2004 19_65 4 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 20_65 2", "11_2004 20_65 2 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 22_65 1", "11_2004 22_65 1 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 30_65 4", "11_2004 30_65 4 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 31_65 3", "11_2004 31_65 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 32_65 3", "11_2004 32_65 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 33_65 3", "11_2004 33_65 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 34_65 3", "11_2004 34_65 3 work s-rgb", "Beach, Northeast Coast, South Island, New Zealand", "Beach, South Island, New Zealand, #1" ),
	new image_info_item ( "11_2004 40_65 3", "11_2004 40_65 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 42_65 3", "11_2004 42_65 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 46_65 3", "11_2004 46_65 3 work s-rgb", "", "" ),
	new image_info_item ( "11_2004 56_65 1", "11_2004 56_65 1 work s-rgb", "", "" ),


	// All of 2_2005 images.. 
	new image_info_item ( "2_2005 69_96 4", "2_2005 69_96 4 work s-rgb", "Water, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2_2005 70_96 3", "2_2005 70_96 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 76_96 1", "2_2005 76_96 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 77_96 9", "2_2005 77_96 9 work s-rgb", "Water, Smoke Creek Desert, NV", "Water, Smoke Creek Desert NV, #4" ),
	new image_info_item ( "2_2005 86_96 9", "2_2005 86_96 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 88_96 10", "2_2005 88_96 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 90_96 8", "2_2005 90_96 8 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 95_96 3", "2_2005 95_96 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 9_96 4", "2_2005 9_96 4 clean s-rgb", "Water, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2_2005 14_96 4", "2_2005 14_96 4 work s-rgb", "Water, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2_2005 17_96 2", "2_2005 17_96 2 work s-rgb", "Water, Smoke Creek Desert, NV", "Water, Smoke Creek Desert, NV, #6" ),
	new image_info_item ( "2_2005 19_96 4", "2_2005 19_96 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 31_96 4", "2_2005 31_96 4 work s-rgb", "Water, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2_2005 33_96 4", "2_2005 33_96 4 work s-rgb", "Water, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2_2005 48_96 2", "2_2005 48_96 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 57_96 2", "2_2005 57_96 2 work s-rgb", "Water, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2_2005 58_96 3", "2_2005 58_96 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 61_96 1", "2_2005 61_96 1 work s-rgb", "Water, Smoke Creek Desert, NV", "Water, Smoke Creek Desert, NV, #8" ),
	new image_info_item ( "2_2005 65_96 2", "2_2005 65_96 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2005 66_96 1", "2_2005 66_96 1 work s-rgb", "", "" ),


	// All of 5_2005 images.. 
	new image_info_item ( "5_2005 45_187 6", "5_2005 45_187 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 47_187 6", "5_2005 47_187 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 48_187 1", "5_2005 48_187 1 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 57_187 3", "5_2005 57_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 70_187 6", "5_2005 70_187 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 72_187 4", "5_2005 72_187 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 78_187 9", "5_2005 78_187 9 work s-rgb", "Abandoned feed storage, Luning, NV", "Feed Mill, Luning NV, #4"  ),
	new image_info_item ( "5_2005 81_187 9", "5_2005 81_187 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 83_187 8", "5_2005 83_187 8 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 84_187 3", "5_2005 84_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 85_187 7", "5_2005 85_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 86_187 1", "5_2005 86_187 1 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 34_187 7", "5_2005 34_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 38_187 6", "5_2005 38_187 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 42_187 3", "5_2005 42_187 3 work s-rgb", "Cut up machinery, Tonopah, NV", "Scrap, Tonopah NV, #2" ),
	new image_info_item ( "5_2005 43_187 5", "5_2005 43_187 5 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 1_187 3", "5_2005 1_187 3 work s-rgb", "Abandoned court house, Belmont, NV", "Courtroom, Belmont NV, #3" ),
	new image_info_item ( "5_2005 2_187 6", "5_2005 2_187 6 work s-rgb", "Abandoned court house, Belmont, NV", "" ),
	new image_info_item ( "5_2005 2_187 9", "5_2005 2_187 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 3_187 3", "5_2005 3_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 3_187 7", "5_2005 3_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 6_187 2", "5_2005 6_187 2 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 8_187 6", "5_2005 8_187 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 9_187 3", "5_2005 9_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 9_187 7", "5_2005 9_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 12_187 4", "5_2005 12_187 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 13_187 6", "5_2005 13_187 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 14_187 3", "5_2005 14_187 3 work s-rgb", "Abandoned court house, Belmont, NV", "Office, Belmont NV, #2" ),
	new image_info_item ( "5_2005 14_187 9", "5_2005 14_187 9 work s-rgb", "Abandoned court house, Belmont, NV", "" ),
	new image_info_item ( "5_2005 16_187 4", "5_2005 16_187 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 16_187 7", "5_2005 16_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 17_187 9", "5_2005 17_187 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 18_187 10", "5_2005 18_187 10 work s-rgb", "Abandoned court house, Belmont, NV", "" ),
	new image_info_item ( "5_2005 20_187 5", "5_2005 20_187 5 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 20_187 8", "5_2005 20_187 8 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 21_187 7", "5_2005 21_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 22_187 3", "5_2005 22_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 23_187 4", "5_2005 23_187 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 24_187 1", "5_2005 24_187 1 crop 1 work s-rgb", "Abandoned court house, Belmont, NV", "Hallway, Belmont NV, #1" ),
	new image_info_item ( "5_2005 119_187 3", "5_2005 119_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 120_187 4", "5_2005 120_187 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 121_187 7", "5_2005 121_187 7 work s-rgb", "Rusting shack, Goldfield, NV", "" ),
	new image_info_item ( "5_2005 122_187 3", "5_2005 122_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 123_187 1", "5_2005 123_187 1 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 124_187 1", "5_2005 124_187 1 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 125_187 7", "5_2005 125_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 128_187 2", "5_2005 128_187 2 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 135_187 6", "5_2005 135_187 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 141_187 7", "5_2005 141_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 91_187 3", "5_2005 91_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 94_187 3", "5_2005 94_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 97_187 1", "5_2005 97_187 1 work s-rgb", "Abandoned mill, tungsten mine, Tempiute, near Rachel, NV", "" ),
	new image_info_item ( "5_2005 98_187 7", "5_2005 98_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 99_187 8", "5_2005 99_187 8 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 103_187 3", "5_2005 103_187 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 104_187 7", "5_2005 104_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 105_187 2", "5_2005 105_187 2 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 109_187 2", "5_2005 109_187 2 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 113_187 8", "5_2005 113_187 8 work s-rgb", "Office, tungsten mine, Tempiute, near Rachel, NV", "Office, Tempiute NV, #1" ),
	new image_info_item ( "5_2005 117_187 7", "5_2005 117_187 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 118_187 6", "5_2005 118_187 6 work s-rgb", "", "" ),


	// All of 5_2005 UT images.. 
	new image_info_item ( "5_2005 80_103 10", "5_2005 80_103 10 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 81_103 3", "5_2005 81_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 82_103 4", "5_2005 82_103 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 84_103 9", "5_2005 84_103 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 85_103 9", "5_2005 85_103 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 86_103 3", "5_2005 86_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 86_103 6", "5_2005 86_103 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 88_103 7", "5_2005 88_103 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 89_103 4", "5_2005 89_103 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 91_103 3", "5_2005 91_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 91_103 6", "5_2005 91_103 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 98_103 3", "5_2005 98_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 98_103 6", "5_2005 98_103 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 101_103 9", "5_2005 101_103 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 103_103 4", "5_2005 103_103 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 5_103 3", "5_2005 5_103 3 work s-rgb", "Kelso Dunes, Mojave Desert, CA", "" ),
	new image_info_item ( "5_2005 7_103 3", "5_2005 7_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 36_103 6", "5_2005 36_103 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 33_103 4", "5_2005 33_103 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 34_103 4", "5_2005 34_103 4 work s-rgb", "Shot up car, Black Rock, UT", "Shot Up Car, Black Rock UT, #8" ),
	new image_info_item ( "5_2005 34_103 7", "5_2005 34_103 7 work s-rgb", "Shot up car, Black Rock, UT", "Shot Up Car, Black Rock UT, #3" ),
	new image_info_item ( "5_2005 39_103 3", "5_2005 39_103 3 work s-rgb", "Shot up car, Black Rock, UT", "Shot Up Car, Black Rock UT, #4" ),
	new image_info_item ( "5_2005 39_103 6", "5_2005 39_103 6 work s-rgb", "Shot up car, Black Rock, UT", "Shot Up Car, Black Rock UT, #5" ),
	new image_info_item ( "5_2005 40_103 1", "5_2005 40_103 1 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 41_103 3", "5_2005 41_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 42_103 3", "5_2005 42_103 3 work s-rgb", "Shot up car, Black Rock, UT", "Shot Up Car, Black Rock UT, #6" ),
	new image_info_item ( "5_2005 77_103 2", "5_2005 77_103 2 work s-rgb", "Shot up car, Black Rock, UT", "Shot Up Car, Black Rock UT, #2" ),
	new image_info_item ( "5_2005 77_103 9", "5_2005 77_103 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 49_103 4", "5_2005 49_103 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 52_103 7", "5_2005 52_103 7 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 56_103 9", "5_2005 56_103 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 62_103 3", "5_2005 62_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 62_103 6", "5_2005 62_103 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 64_103 9", "5_2005 64_103 9 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 66_103 6", "5_2005 66_103 6 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 16_103 4", "5_2005 16_103 4 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 18_103 3", "5_2005 18_103 3 work s-rgb", "", "" ),
	new image_info_item ( "5_2005 29_103 3", "5_2005 29_103 3 work s-rgb", "", "" ),


	// All of 2005_07 images.. 
	new image_info_item ( "7_2005 77_170 6", "7_2005 77_170 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 78_170 3", "7_2005 78_170 3 warp work s-rgb", "", "" ),
	new image_info_item ( "7_2005 80_170 6", "7_2005 80_170 6 work s-rgb", "Abandoned feed storage, Luning, NV", "" ),
	new image_info_item ( "7_2005 81_170 9", "7_2005 81_170 9 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 82_170 1", "7_2005 82_170 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 82_170 6", "7_2005 82_170 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 83_170 1", "7_2005 83_170 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 83_170 4", "7_2005 83_170 4 work s-rgb", "Abandoned feed storage, Luning, NV", "Feed Mill, Luning NV, #2" ),
	new image_info_item ( "7_2005 83_170 7", "7_2005 83_170 7 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 87_170 1", "7_2005 87_170 1 work s-rgb", "Abandoned feed storage, Luning, NV", "" ),
	new image_info_item ( "7_2005 91_170 6", "7_2005 91_170 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 117_170 3", "7_2005 117_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 118_170 6", "7_2005 118_170 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 123_170 3", "7_2005 123_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 126_170 3", "7_2005 126_170 3 work s-rgb", "Wrecked motel, Coaldale, NV", "" ),
	new image_info_item ( "7_2005 129_170 4", "7_2005 129_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 130_170 1", "7_2005 130_170 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 130_170 6", "7_2005 130_170 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 131_170 3", "7_2005 131_170 3 work s-rgb", "Wrecked motel, Coaldale, NV", "" ),
	new image_info_item ( "7_2005 132_170 3", "7_2005 132_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 132_170 9", "7_2005 132_170 9 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 134_170 3", "7_2005 134_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 134_170 6", "7_2005 134_170 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 27_170 2", "7_2005 27_170 2 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 27_170 10", "7_2005 27_170 10 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 28_170 4", "7_2005 28_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 29_170 3", "7_2005 29_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 32_170 4", "7_2005 32_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 9_170 2", "7_2005 9_170 2 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 15_170 1", "7_2005 15_170 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 17_170 3", "7_2005 17_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 93_170 5", "7_2005 93_170 5 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 99_170 7", "7_2005 99_170 7 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 100_170 3", "7_2005 100_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 100_170 6", "7_2005 100_170 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 101_170 4", "7_2005 101_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 102_170 4", "7_2005 102_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 105_170 3", "7_2005 105_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 34_170 4", "7_2005 34_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 35_170 1", "7_2005 35_170 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 37_170 4", "7_2005 37_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 37_170 10", "7_2005 37_170 10 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 39_170 1", "7_2005 39_170 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 41_170 2", "7_2005 41_170 2 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 42_170 8", "7_2005 42_170 8 work s-rgb", "Abandoned and trashed mine, Ward, NV", "" ),
	new image_info_item ( "7_2005 44_170 3", "7_2005 44_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 44_170 9", "7_2005 44_170 9 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 45_170 4", "7_2005 45_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 46_170 9", "7_2005 46_170 9 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 50_170 8", "7_2005 50_170 8 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 52_170 4", "7_2005 52_170 4 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 54_170 3", "7_2005 54_170 3 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 59_170 7", "7_2005 59_170 7 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 62_170 5", "7_2005 62_170 5 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 63_170 2", "7_2005 63_170 2 work s-rgb", "Shot up car, Warm Springs, NV", "Corrosion, Warm Springs NV, #2" ),
	new image_info_item ( "7_2005 63_170 5", "7_2005 63_170 5 work s-rgb", "Shot up car, Warm Springs, NV", "Corrosion, Warm Springs NV, #1" ),
	new image_info_item ( "7_2005 66_170 1", "7_2005 66_170 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 67_170 2", "7_2005 67_170 2 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 67_170 6", "7_2005 67_170 6 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 69_170 8", "7_2005 69_170 8 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 71_170 2", "7_2005 71_170 2 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 73_170 1", "7_2005 73_170 1 work s-rgb", "", "" ),
	new image_info_item ( "7_2005 74_170 2", "7_2005 74_170 2 work s-rgb", "", "" ),


	// All of 2005_09 images.. 
	new image_info_item ( "9_2005 2_71 2", "9_2005 2_71 2 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 2_71 9", "9_2005 2_71 9 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 3_71 2", "9_2005 3_71 2 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 3_71 8", "9_2005 3_71 8 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 6_71 9", "9_2005 6_71 9 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 7_71 4", "9_2005 7_71 4 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 7_71 7", "9_2005 7_71 7 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 9_71 4", "9_2005 9_71 4 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 11_71 7", "9_2005 11_71 7 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 12_71 10", "9_2005 12_71 10 master s-rgb", "Abandoned power plant, Alamosa, CO", "" ),
	new image_info_item ( "9_2005 14_71 8", "9_2005 14_71 8 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 15_71 7", "9_2005 15_71 7 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 16_71 5", "9_2005 16_71 5 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 17_71 2", "9_2005 17_71 2 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 17_71 8", "9_2005 17_71 8 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 20_71 7", "9_2005 20_71 7 master s-rgb", "Abandoned power plant, Alamosa, CO", "" ),
	new image_info_item ( "9_2005 21_71 2", "9_2005 21_71 2 master s-rgb", "Abandoned power plant, Alamosa, CO", "" ),
	new image_info_item ( "9_2005 21_71 4", "9_2005 21_71 4 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 22_71 6", "9_2005 22_71 6 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 22_71 10", "9_2005 22_71 10 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 23_71 1", "9_2005 23_71 1 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 24_71 3", "9_2005 24_71 3 master s-rgb", "Abandoned power plant, Alamosa, CO", "" ),
	new image_info_item ( "9_2005 29_71 6", "9_2005 29_71 6 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 35_71 8", "9_2005 35_71 8 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 40_71 2", "9_2005 40_71 2 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 41_71 1", "9_2005 41_71 1 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 41_71 3", "9_2005 41_71 3 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 41_71 5", "9_2005 41_71 5 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 41_71 6", "9_2005 41_71 6 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 41_71 10", "9_2005 41_71 10 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 42_71 2", "9_2005 42_71 2 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 43_71 6", "9_2005 43_71 6 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 44_71 8", "9_2005 44_71 8 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 48_71 6", "9_2005 48_71 6 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 49_71 1", "9_2005 49_71 1 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 50_71 6", "9_2005 50_71 6 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 50_71 7", "9_2005 50_71 7 master s-rgb", "", "" ),
	new image_info_item ( "9_2005 55_71 1", "9_2005 55_71 1 work s-rgb", "", "" ),
	new image_info_item ( "9_2005 56_71 5", "9_2005 56_71 5 work s-rgb", "", "" ),
	new image_info_item ( "9_2005 64_71 9", "9_2005 64_71 9 work s-rgb", "Rails, Antonito, CO", "" ),
	new image_info_item ( "9_2005 66_71 3", "9_2005 66_71 3 work s-rgb", "", "" ),
	new image_info_item ( "9_2005 70_71 5", "9_2005 70_71 5 work s-rgb", "", "" ),


	// All of 2006_02 images.. 
	new image_info_item ( "2_2006 37_222 3", "2_2006 37_222 3 work s-rgb", "Flooded house, Salton Sea Beach, Salton Sea, CA", "Flooded House, Salton Sea Beach, Salton Sea, CA, #4" ),
	new image_info_item ( "2_2006 43_222 3", "2_2006 43_222 3 work s-rgb", "Flooded house, Salton Sea Beach, Salton Sea, CA", "Flooded House, Salton Sea Beach, Salton Sea, CA, #5" ),
	new image_info_item ( "2_2006 49_222 3", "2_2006 49_222 3 work s-rgb", "Flooded house, Salton Sea Beach, Salton Sea, CA", "Flooded House, Salton Sea Beach, Salton Sea, CA, #6" ),
	new image_info_item ( "2_2006 50_222 3", "2_2006 50_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 51_222 3", "2_2006 51_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 55_222 3", "2_2006 55_222 3 work s-rgb", "Sunset, looking east, Salton Sea, CA", "" ),
	new image_info_item ( "2_2006 56_222 1", "2_2006 56_222 1 work s-rgb", "Sunset, looking east, Salton Sea, CA", "Salton Sea, CA, #3" ),
	new image_info_item ( "2_2006 57_222 2", "2_2006 57_222 2 work s-rgb", "Sunset, looking east, Salton Sea, CA", "" ),
	new image_info_item ( "2_2006 58_222 3", "2_2006 58_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 60_222 3", "2_2006 60_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 62_222 3", "2_2006 62_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 64_222 3", "2_2006 64_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 65_222 3", "2_2006 65_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 75_222 3", "2_2006 75_222 3 work s-rgb", "Flooded house, Salton Sea Beach, Salton Sea, CA", "Flooded House, Salton Sea Beach, Salton Sea, CA, #1" ),
	new image_info_item ( "2_2006 76_222 3", "2_2006 76_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 79_222 3", "2_2006 79_222 3 work s-rgb", "Flooded house, Salton Sea Beach, Salton Sea, CA", "Flooded House, Salton Sea Beach, Salton Sea, CA, #3" ),
	new image_info_item ( "2_2006 88_222 3", "2_2006 88_222 3 work s-rgb", "Flooded house, Salton Sea Beach, Salton Sea, CA", "Flooded House, Salton Sea Beach, Salton Sea, CA, #2" ),
	new image_info_item ( "2_2006 135_222 3", "2_2006 135_222 3 work s-rgb", "Grafitti and paintball, abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 142_222 4", "2_2006 142_222 4 work s-rgb", "Grafitti and paintball, abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 143_222 4", "2_2006 143_222 4 work s-rgb", "Grafitti and paintball, abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 144_222 3", "2_2006 144_222 3 work s-rgb", "Grafitti and paintball, abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 145_222 4", "2_2006 145_222 4 work s-rgb", "Grafitti and paintball, abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 146_222 3", "2_2006 146_222 3 work s-rgb", "Grafitti and paintball, abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 148_222 2", "2_2006 148_222 2 v2 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 149_222 2", "2_2006 149_222 2 v2 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 150_222 2", "2_2006 150_222 2 v2 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 151_222 3", "2_2006 151_222 3 work s-rgb", "Grafitti and paintball, abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 153_222 3", "2_2006 153_222 3 work s-rgb", "Grafitti and paintball, abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 172_222 3", "2_2006 172_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 172_222 7", "2_2006 172_222 7 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 173_222 4", "2_2006 173_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 174_222 3", "2_2006 174_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 174_222 6", "2_2006 174_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 176_222 9", "2_2006 176_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 177_222 4", "2_2006 177_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 178_222 1", "2_2006 178_222 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 180_222 6", "2_2006 180_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 181_222 4", "2_2006 181_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 182_222 1", "2_2006 182_222 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 183_222 9", "2_2006 183_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 184_222 6", "2_2006 184_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 184_222 9", "2_2006 184_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 185_222 9", "2_2006 185_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 187_222 3", "2_2006 187_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 187_222 8", "2_2006 187_222 8 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 154_222 3", "2_2006 154_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 154_222 9", "2_2006 154_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 155_222 7", "2_2006 155_222 7 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 156_222 5", "2_2006 156_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 157_222 9", "2_2006 157_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 158_222 2", "2_2006 158_222 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 159_222 5", "2_2006 159_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 161_222 3", "2_2006 161_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 162_222 6", "2_2006 162_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 163_222 9", "2_2006 163_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 164_222 2", "2_2006 164_222 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 165_222 3", "2_2006 165_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 164_222 4", "2_2006 166_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 164_222 9", "2_2006 166_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 167_222 3", "2_2006 167_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 167_222 6", "2_2006 167_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 168_222 3", "2_2006 168_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 169_222 4", "2_2006 169_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 169_222 7", "2_2006 169_222 7 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 169_222 10", "2_2006 169_222 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 116_222 7", "2_2006 116_222 7 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 116_222 10", "2_2006 116_222 10 work s-rgb", "Abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 117_222 1", "2_2006 117_222 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 118_222 10", "2_2006 118_222 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 119_222 10", "2_2006 119_222 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 120_222 7", "2_2006 120_222 7 work s-rgb", "Abandoned packing plant, Niland, CA", "" ),
	new image_info_item ( "2_2006 120_222 10", "2_2006 120_222 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 123_222 9", "2_2006 123_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 124_222 9", "2_2006 124_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 125_222 4", "2_2006 125_222 4 work s-rgb", "Abandoned packing plant, Niland, CA", "Packing Plant, Niland CA, #1" ),
	new image_info_item ( "2_2006 126_222 3", "2_2006 126_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 126_222 4", "2_2006 126_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 127_222 2", "2_2006 127_222 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 127_222 4", "2_2006 127_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 128_222 1", "2_2006 128_222 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 129_222 5", "2_2006 129_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 130_222 4", "2_2006 130_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 131_222 3", "2_2006 131_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 133_222 10", "2_2006 133_222 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 26_222 7", "2_2006 26_222 7 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 27_222 6", "2_2006 27_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 34_222 5", "2_2006 34_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 91_222 9", "2_2006 91_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 12_222 9", "2_2006 12_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 14_222 5", "2_2006 14_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 15_222 6", "2_2006 15_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 16_222 4", "2_2006 16_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 99_222 9", "2_2006 99_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 100_222 6", "2_2006 100_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 101_222 5", "2_2006 101_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 102_222 5", "2_2006 102_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 103_222 4", "2_2006 103_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 106_222 7", "2_2006 106_222 7 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 109_222 4", "2_2006 109_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 110_222 1", "2_2006 110_222 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 113_222 10", "2_2006 113_222 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 189_222 4", "2_2006 189_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 190_222 3", "2_2006 190_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 192_222 6", "2_2006 192_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 193_222 8", "2_2006 193_222 8 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 194_222 4", "2_2006 194_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 195_222 6", "2_2006 195_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 197_222 1", "2_2006 197_222 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 199_222 4", "2_2006 199_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 202_222 6", "2_2006 202_222 6 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 203_222 5", "2_2006 203_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 205_222 7", "2_2006 205_222 7 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 207_222 1", "2_2006 207_222 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 209_222 4", "2_2006 209_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 210_222 10", "2_2006 210_222 10 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 211_222 2", "2_2006 211_222 2 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 212_222 5", "2_2006 212_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 213_222 3", "2_2006 213_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 215_222 8", "2_2006 215_222 8 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 217_222 9", "2_2006 217_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 218_222 3", "2_2006 218_222 3 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 218_222 4", "2_2006 218_222 4 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 219_222 1", "2_2006 219_222 1 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 219_222 9", "2_2006 219_222 9 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 220_222 5", "2_2006 220_222 5 work s-rgb", "", "" ),
	new image_info_item ( "2_2006 221_222 7", "2_2006 221_222 7 work s-rgb", "", "" ),


	// All of 2006_05 images.. 
	new image_info_item ( "2006_05 71_72 5", "2006_05 71_72 5 work s-rgb", "Owens Valley near Lone Pine, CA", "" ),
	new image_info_item ( "2006_05 72_72 8", "2006_05 72_72 8 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 01_72 8", "2006_05 01_72 8 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 02_72 8", "2006_05 02_72 8 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 04_72 2", "2006_05 04_72 2 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 06_72 4", "2006_05 06_72 4 lab work s-rgb", "Railroad spikes, Gerlach, NV", "" ),
	new image_info_item ( "2006_05 06_72 9", "2006_05 06_72 9 lab work s-rgb", "", "" ),
	new image_info_item ( "2006_05 07_72 5", "2006_05 07_72 5 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 08_72 9", "2006_05 08_72 9 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 43_72 1", "2006_05 43_72 1 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 43_72 10", "2006_05 43_72 10 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 46_72 2", "2006_05 46_72 2 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 46_72 3", "2006_05 46_72 3 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 58_72 2", "2006_05 58_72 2 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 59_72 3", "2006_05 59_72 3 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 62_72 5", "2006_05 62_72 5 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 64_72 10", "2006_05 64_72 10 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 66_72 6", "2006_05 66_72 6 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 67_72 9", "2006_05 67_72 9 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 68_72 9", "2006_05 68_72 9 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 17_72 6", "2006_05 17_72 6 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 25_72 6", "2006_05 25_72 6 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 26_72 1", "2006_05 26_72 1 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 27_72 8", "2006_05 27_72 8 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 28_72 3", "2006_05 28_72 3 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 28_72 8", "2006_05 28_72 8 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 30_72 7", "2006_05 30_72 7 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 35_72 9", "2006_05 35_72 9 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 36_72 10", "2006_05 36_72 10 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 36_72 4", "2006_05 36_72 4 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 38_72 2", "2006_05 38_72 2 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 38_72 5", "2006_05 38_72 5 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 39_72 1", "2006_05 39_72 1 work s-rgb", "", "" ),
	new image_info_item ( "2006_05 40_72 1", "2006_05 40_72 1 work s-rgb", "Abandoned gypsum plant, Bartlett, CA", "Abandoned gypsum plant, Bartlett, CA, #2" ),
	new image_info_item ( "2006_05 40_72 7", "2006_05 40_72 7 work s-rgb", "Abandoned gypsum plant, Bartlett, CA", "Abandoned gypsum plant, Bartlett, CA, #3" ),


	// All of 2006_08 images.. 
	new image_info_item ( "2006_08 66_76 1", "2006_08 66_76 1 work s-rgb", "", "" ),
	new image_info_item ( "2006_08 72_76 2", "2006_08 72_76 2 work s-rgb", "", "" ),
	new image_info_item ( "2006_08 75_76 4", "2006_08 75_76 4 work s-rgb", "", "" ),
	new image_info_item ( "2006_08 76_76 4", "2006_08 76_76 4 work s-rgb", "", "" ),


	// All of 8_2006 images.. 
	new image_info_item ( "8_2006 1_76 1", "8_2006 1_76 1 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 1_76 8", "8_2006 1_76 8 work s-rgb", "Abandoned house, Lockes, NV", "" ),
	new image_info_item ( "8_2006 2_76 7", "8_2006 2_76 7 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 4_76 8", "8_2006 4_76 8 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 6_76 1", "8_2006 6_76 1 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 46_76 2", "8_2006 46_76 2 work s-rgb", "Abandoned power house or (possibly) railroad maintenance building, Ruth, NV", "Old Ruth Pit, Ely NV, #2" ),
	new image_info_item ( "8_2006 46_76 10", "8_2006 46_76 10 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 47_76 1", "8_2006 47_76 1 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 48_76 5", "8_2006 48_76 5 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 48_76 8", "8_2006 48_76 8 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 50_76 4", "8_2006 50_76 4 work s-rgb", "Abandoned power house or (possibly) railroad maintenance building, Ruth, NV", "" ),
	new image_info_item ( "8_2006 50_76 7", "8_2006 50_76 7 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 51_76 6", "8_2006 51_76 6 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 53_76 2", "8_2006 53_76 2 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 54_76 9", "8_2006 54_76 9 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 56_76 3", "8_2006 56_76 3 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 59_76 5", "8_2006 59_76 5 work s-rgb", "", "" ),
	new image_info_item ( "8_2006 25_76 4", "8_2006 25_76 4 work s-rgb", "Changing room, abandoned mine, Pioche, NV", "" ),
	new image_info_item ( "8_2006 27_76 1", "8_2006 27_76 1 work s-rgb", "", "" ),


	// All of 2007_10 images.. 
	new image_info_item ( "2006_10 8_34 3 (A)", "2006_10 8_34 3 work crop A s-rgb", "", "" ),
	new image_info_item ( "2006_10 8_34 3 (B)", "2006_10 8_34 3 work crop B s-rgb", "", "" ),
	new image_info_item ( "2006_10 11_34 4", "2006_10 11_34 4 work s-rgb", "", "" ),
	new image_info_item ( "2006_10 12_34 3", "2006_10 12_34 3 work s-rgb", "", "" ),
	new image_info_item ( "2006_10 20_34 3", "2006_10 20_34 3 work s-rgb", "", "" ),
	new image_info_item ( "2006_10 22_34 3", "2006_10 22_34 3 work s-rgb", "", "" ),
	new image_info_item ( "2006_10 33_34 3", "2006_10 33_34 3 work s-rgb", "", "" ),


	// All of 2007_03 images.. 
	new image_info_item ( "2007_03 24_199 1", "2007_03 24_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 25_199 4", "2007_03 25_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 26_199 9", "2007_03 26_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 36_199 5", "2007_03 36_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 37_199 7", "2007_03 37_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 39_199 3", "2007_03 39_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 39_199 4", "2007_03 39_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 40_199 1", "2007_03 40_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 41_199 7", "2007_03 41_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 43_199 2", "2007_03 43_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 15_199 1", "2007_03 15_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 15_199 6", "2007_03 15_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 17_199 6", "2007_03 17_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 23_199 1", "2007_03 23_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 23_199 6", "2007_03 23_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 38_199 5", "2007_03 38_199 5 work s-rgb", "Office, abandoned mine, Caseldon, NV", "Office, Caseldon NV, #1" ),
	new image_info_item ( "2007_03 65_199 2", "2007_03 65_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 65_199 5", "2007_03 65_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 66_199 5", "2007_03 66_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 67_199 10", "2007_03 67_199 10 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 68_199 2", "2007_03 68_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 69_199 2", "2007_03 69_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 70_199 2", "2007_03 70_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 71_199 4", "2007_03 71_199 4 work s-rgb", "Shower, abandoned mine, Caseldon, NV", "Shower, Pioche NV, #2" ),
	new image_info_item ( "2007_03 71_199 9", "2007_03 71_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 73_199 2", "2007_03 73_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 73_199 8", "2007_03 73_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 74_199 2", "2007_03 74_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 74_199 9", "2007_03 74_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 76_199 2", "2007_03 76_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 76_199 5", "2007_03 76_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 77_199 6", "2007_03 77_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 78_199 3", "2007_03 78_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 79_199 1", "2007_03 79_199 1 work s-rgb", "Office, abandoned mine, Caseldon, NV", "" ),
	new image_info_item ( "2007_03 81_199 4", "2007_03 81_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 82_199 3", "2007_03 82_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 87_199 5", "2007_03 87_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 88_199 4", "2007_03 88_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 90_199 1", "2007_03 90_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 90_199 8", "2007_03 90_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 91_199 4", "2007_03 91_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 91_199 8", "2007_03 91_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 92_199 7", "2007_03 92_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 93_199 9", "2007_03 93_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 95_199 5", "2007_03 95_199 5 work s-rgb", "Ely Valley Mill, Pioche, NV", "" ),
	new image_info_item ( "2007_03 95_199 8", "2007_03 95_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 96_199 4", "2007_03 96_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 97_199 2", "2007_03 97_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 98_199 5", "2007_03 98_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 99_199 7", "2007_03 99_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 101_199 3", "2007_03 101_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 101_199 8", "2007_03 101_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 102_199 2", "2007_03 102_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 102_199 5", "2007_03 102_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 103_199 5", "2007_03 103_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 103_199 8", "2007_03 103_199 8 work s-rgb", "Ely Valley Mill, Pioche, NV", "" ),
	new image_info_item ( "2007_03 104_199 2", "2007_03 104_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 104_199 7", "2007_03 104_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 105_199 2", "2007_03 105_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 105_199 7", "2007_03 105_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 106_199 3", "2007_03 106_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 106_199 9", "2007_03 106_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 107_199 1", "2007_03 107_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 107_199 8", "2007_03 107_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 108_199 5", "2007_03 108_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 108_199 7", "2007_03 108_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 109_199 3", "2007_03 109_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 110_199 1", "2007_03 110_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 110_199 4", "2007_03 110_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 110_199 7", "2007_03 110_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 111_199 1", "2007_03 111_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 112_199 9", "2007_03 112_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 113_199 1", "2007_03 113_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 114_199 3", "2007_03 114_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 114_199 7", "2007_03 114_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 115_199 2", "2007_03 115_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 116_199 9", "2007_03 116_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 117_199 3", "2007_03 117_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 117_199 9", "2007_03 117_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 118_199 5", "2007_03 118_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 118_199 8", "2007_03 118_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 119_199 9", "2007_03 119_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 120_199 7", "2007_03 120_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 121_199 3", "2007_03 121_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 121_199 6", "2007_03 121_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 126_199 6", "2007_03 126_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 127_199 8", "2007_03 127_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 130_199 8", "2007_03 130_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 131_199 2", "2007_03 131_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 131_199 8", "2007_03 131_199 8 work s-rgb", "Mill, Pioche, NV", "" ),
	new image_info_item ( "2007_03 132_199 2", "2007_03 132_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 136_199 2", "2007_03 136_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 136_199 5", "2007_03 136_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 137_199 8", "2007_03 137_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 139_199 2", "2007_03 139_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 140_199 8", "2007_03 140_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 141_199 2", "2007_03 141_199 2 work s-rgb", "Ely Valley Mill, Pioche, NV", "" ),
	new image_info_item ( "2007_03 142_199 2", "2007_03 142_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 142_199 9", "2007_03 142_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 145_199 8", "2007_03 145_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 146_199 4", "2007_03 146_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 147_199 4", "2007_03 147_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 147_199 8", "2007_03 147_199 8 work s-rgb", "Gears, Pioche, NV", "" ),
	new image_info_item ( "2007_03 148_199 1", "2007_03 148_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 148_199 5", "2007_03 148_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 148_199 9", "2007_03 148_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 149_199 1", "2007_03 149_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 149_199 9", "2007_03 149_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 184_199 5", "2007_03 184_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 185_199 1", "2007_03 185_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 187_199 5", "2007_03 187_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 188_199 7", "2007_03 188_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 190_199 1", "2007_03 190_199 1 shift work s-rgb", "", "" ),
	new image_info_item ( "2007_03 191_199 5", "2007_03 191_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 192_199 5", "2007_03 192_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 193_199 2", "2007_03 193_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 194_199 2", "2007_03 194_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 196_199 5", "2007_03 196_199 5 work s-rgb", "Changing room, Ely Valley Mill, Pioche, NV", "" ),
	new image_info_item ( "2007_03 196_199 7", "2007_03 196_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 197_199 9", "2007_03 197_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 198_199 2", "2007_03 198_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 198_199 7", "2007_03 198_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 199_199 2", "2007_03 199_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 48_199 1", "2007_03 48_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 51_199 4", "2007_03 51_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 54_199 4", "2007_03 54_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 56_199 3", "2007_03 56_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 58_199 4", "2007_03 58_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 62_199 2", "2007_03 62_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 44_199 1", "2007_03 44_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 45_199 7", "2007_03 45_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 151_199 3", "2007_03 151_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 151_199 6", "2007_03 151_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 152_199 2", "2007_03 152_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 156_199 3", "2007_03 156_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 156_199 6", "2007_03 156_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 157_199 2", "2007_03 157_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 158_199 3", "2007_03 158_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 158_199 6", "2007_03 158_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 159_199 1", "2007_03 159_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 159_199 8", "2007_03 159_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 160_199 5", "2007_03 160_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 161_199 6", "2007_03 161_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 161_199 9", "2007_03 161_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 162_199 5", "2007_03 162_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 162_199 8", "2007_03 162_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 164_199 1", "2007_03 164_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 164_199 6", "2007_03 164_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 165_199 7", "2007_03 165_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 166_199 2", "2007_03 166_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 167_199 1", "2007_03 167_199 1 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 167_199 8", "2007_03 167_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 170_199 9", "2007_03 170_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 171_199 5", "2007_03 171_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 173_199 8", "2007_03 173_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 174_199 2", "2007_03 174_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 175_199 2", "2007_03 175_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 175_199 8", "2007_03 175_199 8 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 177_199 6", "2007_03 177_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 179_199 2", "2007_03 179_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 181_199 5", "2007_03 181_199 5 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 1_199 3", "2007_03 1_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 1_199 7", "2007_03 1_199 7 work s-rgb", "Ice, abandoned and trashed mine, Ward, NV", "Lab Ice, Ward NV, #1" ),
	new image_info_item ( "2007_03 2_199 3", "2007_03 2_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 2_199 7", "2007_03 2_199 7 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 5_199 4", "2007_03 5_199 4 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 5_199 10", "2007_03 5_199 10 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 6_199 2", "2007_03 6_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 6_199 9", "2007_03 6_199 9 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 8_199 2", "2007_03 8_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 8_199 6", "2007_03 8_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 10_199 2", "2007_03 10_199 2 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 10_199 6", "2007_03 10_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 11_199 3", "2007_03 11_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 11_199 6", "2007_03 11_199 6 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 13_199 3", "2007_03 13_199 3 work s-rgb", "", "" ),
	new image_info_item ( "2007_03 13_199 6", "2007_03 13_199 6 work s-rgb", "", "" ),


	// All of 2007_05 images.. (Wyoming Frontier Prison)
	new image_info_item ( "5_2007 1_138 4", "5_2007 1_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 2_138 10", "5_2007 2_138 10 shift v2 work s-rgb", "A Block, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 3_138 10", "5_2007 3_138 10 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 4_138 10", "5_2007 4_138 10 work s-rgb", "A Block, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 5_138 1", "5_2007 5_138 1 work s-rgb", "B Block, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 5_138 7", "5_2007 5_138 7 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 6_138 1", "5_2007 6_138 1 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 6_138 5", "5_2007 6_138 5 work s-rgb", "C Block, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 6_138 8", "5_2007 6_138 8 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 7_138 8", "5_2007 7_138 8 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 8_138 3", "5_2007 8_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 8_138 7", "5_2007 8_138 7 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 9_138 6", "5_2007 9_138 6 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 9_138 9", "5_2007 9_138 9 work s-rgb", "C Block, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 13_138 1", "5_2007 13_138 1 work s-rgb", "Gas chamber observation room, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 13_138 7", "5_2007 13_138 7 work s-rgb", "Gas chamber observation room, Wyoming Frontier Prison, Rawlins, WY", "Gas Chamber, Wyoming Frontier Prison, #2" ),
	new image_info_item ( "5_2007 14_138 6", "5_2007 14_138 6 work s-rgb", "Infirmary sunroom, Wyoming Frontier Prison, Rawlins, WY", "Sun Room, Wyoming Frontier Prison" ),
	new image_info_item ( "5_2007 14_138 7", "5_2007 14_138 7 shift work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 15_138 1", "5_2007 15_138 1 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 15_138 9", "5_2007 15_138 9 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 16_138 3", "5_2007 16_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 16_138 9", "5_2007 16_138 9 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 18_138 7", "5_2007 18_138 7 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 19_138 2", "5_2007 19_138 2 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 20_138 3", "5_2007 20_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 20_138 6", "5_2007 20_138 6 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 21_138 7", "5_2007 21_138 7 shift work s-rgb", "Cell, B Block, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 22_138 3", "5_2007 22_138 3 work s-rgb", "Cell, B Block, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 22_138 7", "5_2007 22_138 7 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 23_138 3", "5_2007 23_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 23_138 9", "5_2007 23_138 9 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 24_138 3", "5_2007 24_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 24_138 7", "5_2007 24_138 7 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 25_138 1", "5_2007 25_138 1 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 25_138 9", "5_2007 25_138 9 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 26_138 10", "5_2007 26_138 10 work s-rgb", "B Block, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 27_138 3", "5_2007 27_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 27_138 8", "5_2007 27_138 8 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 28_138 3", "5_2007 28_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 28_138 7", "5_2007 28_138 7 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 29_138 1", "5_2007 29_138 1 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 29_138 8", "5_2007 29_138 8 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 30_138 4", "5_2007 30_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 31_138 3", "5_2007 31_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 32_138 4", "5_2007 32_138 4 work s-rgb", "Shower, B Block, Wyoming Frontier Prison, Rawlins, WY", "Shower, B Block, Wyoming Frontier Prison, #1"  ),
	new image_info_item ( "5_2007 32_138 10", "5_2007 32_138 10 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 37_138 3", "5_2007 37_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 37_138 6", "5_2007 37_138 6 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 37_138 10", "5_2007 37_138 10 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 40_138 5", "5_2007 40_138 5 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 42_138 3", "5_2007 42_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 43_138 7", "5_2007 43_138 7 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 44_138 6", "5_2007 44_138 6 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 45_138 3", "5_2007 45_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 45_138 8", "5_2007 45_138 8 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 45_138 10", "5_2007 45_138 10 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 46_138 4", "5_2007 46_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 46_138 8", "5_2007 46_138 8 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 47_138 10", "5_2007 47_138 10 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 48_138 10", "5_2007 48_138 10 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 50_138 8", "5_2007 50_138 8 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 51_138 2", "5_2007 51_138 2 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 53_138 6", "5_2007 53_138 6 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 54_138 4", "5_2007 54_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 54_138 10", "5_2007 54_138 10 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 55_138 10", "5_2007 55_138 10 work s-rgb", "Infirmary, Wyoming Frontier Prison, Rawlins, WY", ""  ),
	new image_info_item ( "5_2007 56_138 2", "5_2007 56_138 2 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 57_138 5", "5_2007 57_138 5 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 58_138 3", "5_2007 58_138 3 work s-rgb", "Cells, death row, Wyoming Frontier Prison, Rawlins, WY", "Cells, Death Row, Wyoming Frontier Prison, #2"  ),
	new image_info_item ( "5_2007 58_138 7", "5_2007 58_138 7 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 60_138 1", "5_2007 60_138 1 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 60_138 5", "5_2007 60_138 5 work s-rgb", "Gas chamber from death row door, Wyoming Frontier Prison, Rawlins, WY", "Gas Chamber, Wyoming Frontier Prison, #4" ),
	new image_info_item ( "5_2007 60_138 8", "5_2007 60_138 8 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 62_138 6", "5_2007 62_138 6 work s-rgb", "Gallows, Wyoming Frontier Prison, Rawlins, WY", "Gallows, Wyoming Frontier Prison" ),


	// More 2007_05 images.. (Reliance Wyoming)
	new image_info_item ( "5_2007 114_138 4", "5_2007 114_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 116_138 4", "5_2007 116_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 117_138 1", "5_2007 117_138 1 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 117_138 6", "5_2007 117_138 6 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 118_138 2", "5_2007 118_138 2 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 118_138 7", "5_2007 118_138 7 work s-rgb", "", ""  ),


	// More 2007_05 images.. (Wyoming sky panoramic)
	new image_info_item ( "5_2007 125_138 4", "5_2007 125_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 126_138 4", "5_2007 126_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 131_138 4", "5_2007 131_138 4 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 134_138 3", "5_2007 134_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 135_138 3", "5_2007 135_138 3 work s-rgb", "", ""  ),
	new image_info_item ( "5_2007 136_138 3", "5_2007 136_138 3 work s-rgb", "", ""  ),

	// All of 2007_08 images..
	new image_info_item ( "2007_08 36_129 1", "2007_08 36_129 1 work s-rgb", "Unusual rain, Great Salt Desert, UT", "Unusual Rain, Great Salt Desert, UT, #6"  ),
	new image_info_item ( "2007_08 53_129 3", "2007_08 53_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 57_129 3", "2007_08 57_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 54_129 1", "2007_08 54_129 1 work s-rgb", "Unusual rain, Great Salt Desert, UT", ""  ),
	new image_info_item ( "2007_08 60_129 2", "2007_08 60_129 2 work s-rgb", "Unusual rain, Great Salt Desert, UT", "Unusual Rain, Great Salt Desert, UT, #5"  ),
	new image_info_item ( "2007_08 62_129 1", "2007_08 62_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 64_129 1", "2007_08 64_129 1 work s-rgb", "Unusual rain, Great Salt Desert, UT", ""  ),
	new image_info_item ( "2007_08 67_129 2", "2007_08 67_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 69_129 1", "2007_08 69_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 70_129 1", "2007_08 70_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 74_129 1", "2007_08 74_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 75_129 1", "2007_08 75_129 1 work s-rgb", "Unusual rain, Great Salt Desert, UT", "Unusual Rain, Great Salt Desert, UT, #2" ),
	new image_info_item ( "2007_08 77_129 3", "2007_08 77_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 82_129 2", "2007_08 82_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 83_129 1", "2007_08 83_129 1 work s-rgb", "Unusual rain, Great Salt Desert, UT", ""  ),
	new image_info_item ( "2007_08 86_129 1", "2007_08 86_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 89_129 3", "2007_08 89_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 90_129 1", "2007_08 90_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 91_129 3", "2007_08 91_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 95_129 3", "2007_08 95_129 3 work s-rgb", "Unusual rain, Great Salt Desert, UT", "Unusual Rain, Great Salt Desert, UT, #4"  ),
	new image_info_item ( "2007_08 97_129 3", "2007_08 97_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 99_129 4", "2007_08 99_129 4 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 100_129 3", "2007_08 100_129 3 work s-rgb", "Unusual rain, Great Salt Desert, UT", "Unusual Rain, Great Salt Desert, UT, #1" ),
	new image_info_item ( "2007_08 102_129 3", "2007_08 102_129 3 work s-rgb", "Unusual rain, Great Salt Desert, UT", ""  ),
	new image_info_item ( "2007_08 108_129 2", "2007_08 108_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 112_129 4", "2007_08 112_129 4 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 115_129 2", "2007_08 115_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 120_129 2", "2007_08 120_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 122_129 2", "2007_08 122_129 2 work s-rgb", "Unusual rain, Great Salt Desert, UT", "Unusual Rain, Great Salt Desert, UT, #3"  ),
	new image_info_item ( "2007_08 127_129 2", "2007_08 127_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "2007_08 128_129 3", "2007_08 128_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 1_129 2", "8_2007 1_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 1_129 5", "8_2007 1_129 5 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 1_129 8", "8_2007 1_129 8 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 4_129 2", "8_2007 4_129 2 work s-rgb", "", "Dance Hall, Wendover AFB, UT"  ),
	new image_info_item ( "8_2007 6_129 8", "8_2007 6_129 8 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 7_129 1", "8_2007 7_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 8_129 9", "8_2007 8_129 9 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 10_129 3", "8_2007 10_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 10_129 7", "8_2007 10_129 7 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 11_129 1", "8_2007 11_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 12_129 6", "8_2007 12_129 6 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 14_129 2", "8_2007 14_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 14_129 7", "8_2007 14_129 7 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 17_129 1", "8_2007 17_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 17_129 9", "8_2007 17_129 9 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 18_129 1", "8_2007 18_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 18_129 4", "8_2007 18_129 4 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 18_129 8", "8_2007 18_129 8 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 19_129 3", "8_2007 19_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 19_129 6", "8_2007 19_129 6 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 20_129 2", "8_2007 20_129 2 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 20_129 4", "8_2007 20_129 4 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 20_129 7", "8_2007 20_129 7 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 21_129 1", "8_2007 21_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 21_129 6", "8_2007 21_129 6 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 21_129 7", "8_2007 21_129 7 work s-rgb", "Barracks, Wendover UT", "Barracks, Wendover UT, #6" ),
	new image_info_item ( "8_2007 22_129 1", "8_2007 22_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 22_129 7", "8_2007 22_129 7 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 23_129 6", "8_2007 23_129 6 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 23_129 9", "8_2007 23_129 9 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 24_129 3", "8_2007 24_129 3 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 24_129 9", "8_2007 24_129 9 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 25_129 1", "8_2007 25_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 27_129 1", "8_2007 27_129 1 work s-rgb", "", ""  ),
	new image_info_item ( "8_2007 27_129 6", "8_2007 27_129 6 work s-rgb", "", ""  ),


	// All of 2007_12 images..
	new image_info_item ( "12_2007 1_24 1", "12_2007 1_24 1 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 3_24 3", "12_2007 3_24 3 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 3_24 9", "12_2007 3_24 9 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 4_24 6", "12_2007 4_24 6 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 4_24 8", "12_2007 4_24 8 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 5_24 9", "12_2007 5_24 9 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 6_24 1", "12_2007 6_24 1 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 6_24 7", "12_2007 6_24 7 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 7_24 3", "12_2007 7_24 3 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 8_24 1", "12_2007 8_24 1 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 9_24 3", "12_2007 9_24 3 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 9_24 6", "12_2007 9_24 6 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 10_24 3", "12_2007 10_24 3 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 10_24 6", "12_2007 10_24 6 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 11_24 6", "12_2007 11_24 6 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 113_24 4", "12_2007 13_24 4 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 14_24 4", "12_2007 14_24 4 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 15_24 7", "12_2007 15_24 7 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 17_24 9", "12_2007 17_24 9 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 18_24 9", "12_2007 18_24 9 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 19_24 7", "12_2007 19_24 7 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 20_24 1", "12_2007 20_24 1 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 21_24 7", "12_2007 21_24 7 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 22_24 7", "12_2007 22_24 7 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 23_24 1", "12_2007 23_24 1 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 23_24 6", "12_2007 23_24 6 work s-rgb", "", "" ),
	new image_info_item ( "12_2007 24_24 1", "12_2007 24_24 1 work s-rgb", "", "" ),


	// All of "2007_12 A" images..
	new image_info_item ( "12_2007 1_36 1", "12_2007 1_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 1_36 8", "12_2007 1_36 8 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 2_36 3", "12_2007 2_36 3 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 2_36 4", "12_2007 2_36 4 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 2_36 8", "12_2007 2_36 8 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 3_36 1", "12_2007 3_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 3_36 7", "12_2007 3_36 7 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 4_36 6", "12_2007 4_36 6 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 4_36 8", "12_2007 4_36 8 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 5_36 5", "12_2007 5_36 5 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 5_36 8", "12_2007 5_36 8 work s-rgb", "Western States Hospital, Staunton VA", "Western States Hospital, #8" ),
	new image_info_item ( "12_2007 6_36 1", "12_2007 6_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 6_36 6", "12_2007 6_36 6 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 7_36 4", "12_2007 7_36 4 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 7_36 7", "12_2007 7_36 7 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 8_36 10", "12_2007 8_36 10 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 8_36 2", "12_2007 8_36 2 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 9_36 3", "12_2007 9_36 3 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 9_36 7", "12_2007 9_36 7 work s-rgb", "Western States Hospital, Staunton VA", "" ),

	new image_info_item ( "12_2007 10_36 4", "12_2007 10_36 4 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 11_36 4", "12_2007 11_36 4 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 11_36 7", "12_2007 11_36 7 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 12_36 2", "12_2007 12_36 2 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 12_36 4", "12_2007 12_36 4 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 13_36 3", "12_2007 13_36 3 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 14_36 9", "12_2007 14_36 9 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 16_36 1", "12_2007 16_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 16_36 9", "12_2007 16_36 9 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 17_36 3", "12_2007 17_36 3 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 19_36 1", "12_2007 19_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 20_36 1", "12_2007 20_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 21_36 1", "12_2007 21_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 21_36 6", "12_2007 21_36 6 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 23_36 1", "12_2007 23_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 23_36 4", "12_2007 23_36 4 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 24_36 3", "12_2007 24_36 3 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 27_36 1", "12_2007 27_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 27_36 5", "12_2007 27_36 5 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 28_36 9", "12_2007 28_36 9 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 29_36 3", "12_2007 29_36 3 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 31_36 1", "12_2007 31_36 1 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 31_36 9", "12_2007 31_36 9 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 32_36 3", "12_2007 32_36 3 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 32_36 9", "12_2007 32_36 9 work s-rgb", "Western States Hospital, Staunton VA", "" ),
	new image_info_item ( "12_2007 33_36 9", "12_2007 33_36 9 work s-rgb", "Western States Hospital, Staunton VA", "" ),


	// All of 2008_01 images..
	new image_info_item ( "2008_01 4_88 1", "2008_01 4_88 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 23_88 1", "2008_01 23_88 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 24_88 4", "2008_01 24_88 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 26_88 4", "2008_01 26_88 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 31_88 4", "2008_01 31_88 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 33_88 3", "2008_01 33_88 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 34_88 3", "2008_01 34_88 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 45_88 4", "2008_01 45_88 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 55_88 1", "2008_01 55_88 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 57_88 3", "2008_01 57_88 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 58_88 3", "2008_01 58_88 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 61_88 3", "2008_01 61_88 3 work s-rgb", "Winter snow, Smoke Creek Desert, NV", "Winter, Smoke Creek Desert, NV, #3" ),
	new image_info_item ( "2008_01 62_88 3", "2008_01 62_88 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 64_88 4", "2008_01 64_88 4 work s-rgb", "Snow, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2008_01 66_88 3", "2008_01 66_88 3 work s-rgb", "Snow, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2008_01 75_88 2", "2008_01 75_88 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 77_88 2", "2008_01 77_88 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_01 86_88 4", "2008_01 86_88 4 work s-rgb", "Winter ice and water, Smoke Creek Desert, NV", "Winter, Smoke Creek Desert, NV, #2" ),
	new image_info_item ( "2008_01 87_88 1", "2008_01 87_88 1 work s-rgb", "Snow, Smoke Creek Desert, NV", "" ),


	// All of 2008_02 images..
	new image_info_item ( "2008_02 1_272 1", "2008_02 1_272 1 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 7_272 1", "2008_02 7_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 10_272 3", "2008_02 10_272 3 work s-rgb", "Abandoned church, Amboy, CA", "" ),
	new image_info_item ( "2008_02 15_272 3", "2008_02 15_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 18_272 3", "2008_02 18_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 21_272 3", "2008_02 21_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 35_272 3", "2008_02 35_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 36_272 3", "2008_02 36_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 41_272 3", "2008_02 41_272 3 work s-rgb", "Flooded house, Bombay Beach, Salton Sea, CA", "Flooded House, Bombay Beach, Salton Sea, CA, #2" ),
	new image_info_item ( "2008_02 46_272 3", "2008_02 46_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 47_272 3", "2008_02 47_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 54_272 1", "2008_02 54_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 55_272 1", "2008_02 55_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 56_272 1", "2008_02 56_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 57_272 1", "2008_02 57_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 60_272 1", "2008_02 60_272 1 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 61_272 3", "2008_02 61_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 65_272 2", "2008_02 65_272 2 work s-rgb", "Flooded trailer, Bombay Beach, Salton Sea, CA", "" ),
	new image_info_item ( "2008_02 67_272 3", "2008_02 67_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 68_272 1", "2008_02 68_272 1 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 70_272 3", "2008_02 70_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 73_272 2", "2008_02 73_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 76_272 3", "2008_02 76_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 81_272 3", "2008_02 81_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 82_272 3", "2008_02 82_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 86_272 1", "2008_02 86_272 1 work work s-rgb", "", "" ),
	new image_info_item ( "2008_02 89_272 1", "2008_02 89_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 93_272 2", "2008_02 93_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 95_272 2", "2008_02 95_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 112_272 4", "2008_02 112_272 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 117_272 1", "2008_02 117_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 118_272 2", "2008_02 118_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 119_272 3", "2008_02 119_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 120_272 3", "2008_02 120_272 3 work s-rgb", "Bombay  Beach, Salton Sea, CA", "Salton Sea, CA, #2" ),
	new image_info_item ( "2008_02 123_272 1", "2008_02 123_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 126_272 3", "2008_02 126_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 127_272 2", "2008_02 127_272 2 work s-rgb", "Bombay  Beach, Salton Sea, CA", "Salton Sea, CA, #3" ),
	new image_info_item ( "2008_02 128_272 2", "2008_02 128_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 129_272 2", "2008_02 129_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 132_272 2", "2008_02 132_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 133_272 1", "2008_02 133_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 135_272 2", "2008_02 135_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 138_272 1", "2008_02 138_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 139_272 1", "2008_02 139_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 144_272 1", "2008_02 144_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 145_272 1", "2008_02 145_272 1 shift work s-rgb", "Grafitti and paintball, wrecked bar, Salton Sea Beach, CA", "" ),
	new image_info_item ( "2008_02 146_272 3", "2008_02 146_272 3 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 147_272 3", "2008_02 147_272 3 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 149_272 3", "2008_02 149_272 3 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 152_272 2", "2008_02 152_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 153_272 1", "2008_02 153_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 156_272 2", "2008_02 156_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 158_272 1", "2008_02 158_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 162_272 2", "2008_02 162_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 166_272 1", "2008_02 166_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 169_272 1", "2008_02 169_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 170_272 3", "2008_02 170_272 3 work s-rgb", "Flooded house, Bombay Beach, Salton Sea, CA", "Flooded House, Bombay Beach, Salton Sea, CA, #1" ),
	new image_info_item ( "2008_02 171_272 1", "2008_02 171_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 173_272 3", "2008_02 173_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 175_272 3", "2008_02 175_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 177_272 3", "2008_02 177_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 202_272 4", "2008_02 202_272 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 206_272 3", "2008_02 206_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 210_272 4", "2008_02 210_272 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 211_272 3", "2008_02 211_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 213_272 3", "2008_02 213_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 214_272 4", "2008_02 214_272 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 216_272 4", "2008_02 216_272 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 217_272 1", "2008_02 217_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 222_272 3", "2008_02 222_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 223_272 3", "2008_02 223_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 225_272 1", "2008_02 225_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 226_272 1", "2008_02 226_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 227_272 3", "2008_02 227_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 228_272 1", "2008_02 228_272 1 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 229_272 3", "2008_02 229_272 3 work s-rgb", "Abandoned house, east shore, Salton Sea, CA", "Abandoned House, East Shore, Salton Sea, CA, #3" ),
	new image_info_item ( "2008_02 230_272 3", "2008_02 230_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 231_272 3", "2008_02 231_272 3 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 239_272 3", "2008_02 239_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 241_272 4", "2008_02 241_272 4 work s-rgb", "Wrecked beach shower, east shore, Salton Sea, CA", "Wrecked Beach Shower, east shore, Salton Sea, CA, #1" ),
	new image_info_item ( "2008_02 242_272 4", "2008_02 242_272 4 work s-rgb", "Wrecked beach shower, east shore, Salton Sea, CA", "Wrecked Beach Shower, east shore, Salton Sea, CA, #2" ),
	new image_info_item ( "2008_02 245_272 1", "2008_02 245_272 1 work s-rgb", "Wrecked beach shower, east shore, Salton Sea, CA", "Wrecked Beach Shower, east shore, Salton Sea, CA, #3" ),
	new image_info_item ( "2008_02 246_272 1", "2008_02 246_272 1 work s-rgb", "Wrecked beach shower, east shore, Salton Sea, CA", "Wrecked Beach Shower, east shore, Salton Sea, CA, #4" ),
	new image_info_item ( "2008_02 247_272 2", "2008_02 247_272 2 work s-rgb", "Wrecked beach shower, east shore, Salton Sea, CA", "Wrecked Beach Shower, east shore, Salton Sea, CA, #5" ),
	new image_info_item ( "2008_02 248_272 3", "2008_02 248_272 3 work s-rgb", "Wrecked beach shower, east shore, Salton Sea, CA", "Wrecked Beach Shower, east shore, Salton Sea, CA, #6" ),
	new image_info_item ( "2008_02 249_272 3", "2008_02 249_272 3 work s-rgb", "Wrecked beach shower, east shore, Salton Sea, CA", "Wrecked Beach Shower, east shore, Salton Sea, CA, #7" ),
	new image_info_item ( "2008_02 254_272 1", "2008_02 254_272 1 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 255_272 3", "2008_02 255_272 3 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 256_272 2", "2008_02 256_272 2 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 257_272 2", "2008_02 257_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 258_272 2", "2008_02 258_272 2 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 259_272 4", "2008_02 259_272 4 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 260_272 1", "2008_02 260_272 1 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 263_272 4", "2008_02 263_272 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 266_272 1", "2008_02 266_272 1 work s-rgb", "Abandoned motel, north shore, Salton Sea, CA", "Abandoned Motel, North Shore, Salton Sea, CA, #2" ),
	new image_info_item ( "2008_02 268_272 4", "2008_02 268_272 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 269_272 2", "2008_02 269_272 2 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 270_272 3", "2008_02 270_272 3 shift work s-rgb", "", "" ),
	new image_info_item ( "2008_02 271_272 4", "2008_02 271_272 4 work s-rgb", "", "" ),
	new image_info_item ( "2008_02 272_272 2", "2008_02 272_272 2 work s-rgb", "", "" ),


	// All of 2008_06 images..
	new image_info_item ( "2008_06 04_96 3", "2008_06 04_96 3 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 06_96 1", "2008_06 06_96 1 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 09_96 4", "2008_06 09_96 4 work s-rgb", "Playa, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 10_96 4", "2008_06 10_96 4 work s-rgb", "Playa, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 13_96 2", "2008_06 13_96 2 work s-rgb", "Playa, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 16_96 1", "2008_06 16_96 1 work s-rgb", "Smoke From Fires in California, Smoke Creek Desert, NV", "Smoke on Playa, Smoke Creek Desert, NV, #1" ),
	new image_info_item ( "2008_06 17_96 2", "2008_06 17_96 2 work s-rgb", "Playa, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 18_96 2", "2008_06 18_96 2 work s-rgb", "Playa, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 19_96 2", "2008_06 19_96 2 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 22_96 2", "2008_06 22_96 2 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 24_96 2", "2008_06 24_96 2 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 26_96 1", "2008_06 26_96 1 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 28_96 3", "2008_06 28_96 3 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 32_96 1", "2008_06 32_96 1 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 42_96 1", "2008_06 42_96 1 work s-rgb", "Cloud, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 45_96 1", "2008_06 45_96 1 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 49_96 3", "2008_06 49_96 3 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 51_96 3", "2008_06 51_96 3 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 53_96 3", "2008_06 53_96 3 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 54_96 3", "2008_06 54_96 3 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 55_96 1", "2008_06 55_96 1 work s-rgb", "Black Rock Desert, NV", "Black Rock Desert, NV, #2" ),
	new image_info_item ( "2008_06 56_96 1", "2008_06 56_96 1 work s-rgb", "Playa and cloud, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 57_96 2", "2008_06 57_96 2 work s-rgb", "Playa and cloud, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 59_96 4", "2008_06 59_96 4 work s-rgb", "Playa and cloud, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 61_96 4", "2008_06 61_96 4 work s-rgb", "Playa and cloud, Black Rock Desert, NV", "Playa and Cloud, Black Rock Desert, NV, #4" ),
	new image_info_item ( "2008_06 64_96 1", "2008_06 64_96 1 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 66_96 2", "2008_06 66_96 2 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 69_96 2", "2008_06 69_96 2 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 71_96 2", "2008_06 71_96 2 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 72_96 1", "2008_06 72_96 1 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 73_96 2", "2008_06 73_96 2 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 74_96 1", "2008_06 74_96 1 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 75_96 1", "2008_06 75_96 1 work s-rgb", "Worn tracks, Black Rock Desert, NV", "" ),
	new image_info_item ( "2008_06 78_96 2", "2008_06 78_96 2 work s-rgb", "Tiny dunes, Black Rock Desert, NV", "Tiny Dunes, Black Rock Desert, #1" ),
	new image_info_item ( "2008_06 80_96 4", "2008_06 80_96 4 work s-rgb", "Cloud, Black Rock Desert, NV", "Cloud, Black Rock Desert, NV, #1" ),
	new image_info_item ( "2008_06 81_96 4", "2008_06 81_96 4 work s-rgb", "Cloud, Black Rock Desert, NV", "Cloud, Black Rock Desert, NV, #2" ),
	new image_info_item ( "2008_06 84_96 2", "2008_06 84_96 2 work s-rgb", "Smoke from fires in CA, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2008_06 86_96 3", "2008_06 86_96 3 work s-rgb", "Smoke from fires in CA, Smoke Creek Desert, NV", "Smoke, Smoke Creek Desert, NV, #1" ),
	new image_info_item ( "2008_06 87_96 2", "2008_06 87_96 2 work s-rgb", "Smoke from fires in CA, Smoke Creek Desert, NV", "" ),
	new image_info_item ( "2008_06 91_96 4", "2008_06 91_96 4 work s-rgb", "Smoke from fires in CA, Smoke Creek Desert, NV", "" ),

	// 2008_10 McGill Clubhouse, McGill NV
	new image_info_item ( "2008_10 2_104 2", "2008_10 2_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 2_104 8", "2008_10 2_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 5_104 1", "2008_10 5_104 1 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 5_104 8", "2008_10 5_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 7_104 5", "2008_10 7_104 5 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 8_104 1", "2008_10 8_104 1 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 8_104 5", "2008_10 8_104 5 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 8_104 8", "2008_10 8_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 9_104 2", "2008_10 9_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 9_104 8", "2008_10 9_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 10_104 5", "2008_10 10_104 5 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 10_104 8", "2008_10 10_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 11_104 2", "2008_10 11_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 11_104 8", "2008_10 11_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 12_104 2", "2008_10 12_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 13_104 2", "2008_10 13_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 13_104 5", "2008_10 13_104 5 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 13_104 8", "2008_10 13_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 14_104 10", "2008_10 14_104 10 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 14_104 2", "2008_10 14_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 14_104 4", "2008_10 14_104 4 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 15_104 2", "2008_10 15_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 17_104 2", "2008_10 17_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 17_104 5", "2008_10 17_104 5 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "Clubhouse, McGill NV, #4" ),
	new image_info_item ( "2008_10 18_104 2", "2008_10 18_104 2 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 18_104 5", "2008_10 18_104 5 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 18_104 8", "2008_10 18_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 19_104 5", "2008_10 19_104 5 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 19_104 8", "2008_10 19_104 8 work s-rgb", "Interior, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 20_104 1", "2008_10 20_104 1 work s-rgb", "Pool, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 21_104 2", "2008_10 21_104 2 work s-rgb", "Pool, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 22_104 2", "2008_10 22_104 2 work s-rgb", "Pool, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 23_104 1", "2008_10 23_104 1 work s-rgb", "Pool, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 23_104 4", "2008_10 23_104 4 shift work s-rgb", "Pool, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 23_104 8", "2008_10 23_104 8 work s-rgb", "Pool, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 24_104 1", "2008_10 24_104 1 work s-rgb", "Pool, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 25_104 2", "2008_10 25_104 2 work s-rgb", "Pool, McGill Clubhouse, McGill NV", "" ),
	new image_info_item ( "2008_10 25_104 5", "2008_10 25_104 5 work s-rgb", "Pool, McGill Clubhouse, McGill NV", "Pool, McGill NV, #2" ),

	// 2008 10 Eureka NV
	new image_info_item ( "2008_10 26_104 3", "2008_10 26_104 3 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #1" ),
	new image_info_item ( "2008_10 26_104 4", "2008_10 26_104 4 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #2" ),
	new image_info_item ( "2008_10 26_104 7", "2008_10 26_104 7 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #3" ),
	new image_info_item ( "2008_10 27_104 9", "2008_10 27_104 9 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #4" ),
	new image_info_item ( "2008_10 28_104 6", "2008_10 28_104 6 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #5" ),
	new image_info_item ( "2008_10 31_104 6", "2008_10 31_104 6 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #6" ),
	new image_info_item ( "2008_10 33_104 6", "2008_10 33_104 6 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #7" ),
	new image_info_item ( "2008_10 35_104 7", "2008_10 35_104 7 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #8" ),
	new image_info_item ( "2008_10 36_104 4", "2008_10 36_104 4 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #9" ),
	new image_info_item ( "2008_10 37_104 2", "2008_10 37_104 2 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 38_104 1", "2008_10 38_104 1 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 38_104 4", "2008_10 38_104 4 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 38_104 7", "2008_10 38_104 7 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 39_104 2", "2008_10 39_104 2 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 39_104 7", "2008_10 39_104 7 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 40_104 8", "2008_10 40_104 8 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 41_104 1", "2008_10 41_104 1 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 41_104 4", "2008_10 41_104 4 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 43_104 3", "2008_10 43_104 3 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 43_104 5", "2008_10 43_104 5 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 44_104 9", "2008_10 44_104 9 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 45_104 7", "2008_10 45_104 7 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 46_104 10", "2008_10 46_104 10 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 46_104 2", "2008_10 46_104 2 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 48_104 2", "2008_10 48_104 2 shift work s-rgb", "Generator house, mine, Eureka NV", "Generator House, Eureka NV, #2" ),
	new image_info_item ( "2008_10 48_104 4", "2008_10 48_104 4 work s-rgb", "Generator house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 49_104 6", "2008_10 49_104 6 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #1" ),
	new image_info_item ( "2008_10 49_104 7", "2008_10 49_104 7 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #2" ),
	new image_info_item ( "2008_10 50_104 4", "2008_10 50_104 4 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #3" ),
	new image_info_item ( "2008_10 51_104 1", "2008_10 51_104 1 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #4" ),
	new image_info_item ( "2008_10 52_104 4", "2008_10 52_104 4 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #5" ),
	new image_info_item ( "2008_10 52_104 7", "2008_10 52_104 7 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #6" ),
	new image_info_item ( "2008_10 53_104 2", "2008_10 53_104 2 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #7" ),
	new image_info_item ( "2008_10 54_104 3", "2008_10 54_104 3 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #8" ),
	new image_info_item ( "2008_10 54_104 7", "2008_10 54_104 7 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #9" ),
	new image_info_item ( "2008_10 55_104 1", "2008_10 55_104 1 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #10" ),
	new image_info_item ( "2008_10 56_104 2", "2008_10 56_104 2 work s-rgb", "Machine shop, mine, Eureka NV", "Machine Shop, Eureka NV, #11" ),
	new image_info_item ( "2008_10 58_104 5", "2008_10 58_104 5 work s-rgb", "Hoist house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 58_104 8", "2008_10 58_104 8 work s-rgb", "Hoist house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 59_104 2", "2008_10 59_104 2 shift work s-rgb", "Hoist house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 59_104 8", "2008_10 59_104 8 work s-rgb", "Hoist house, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 62_104 2", "2008_10 62_104 2 work s-rgb", "Recreation room, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 62_104 8", "2008_10 62_104 8 work s-rgb", "Recreation room, mine, Eureka NV", "" ),
	new image_info_item ( "2008_10 63_104 4", "2008_10 63_104 4 work s-rgb", "Changing room, mine, Eureka NV", "Changing Room, Eureka NV, #10" ),

	// 2008 10 Ward, NV
	new image_info_item ( "2008_10 65_104 1", "2008_10 65_104 1 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 67_104 1", "2008_10 67_104 1 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 67_104 4", "2008_10 67_104 4 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 68_104 7", "2008_10 68_104 7 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 68_104 8", "2008_10 68_104 8 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 68_104 9", "2008_10 68_104 9 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 69_104 3", "2008_10 69_104 3 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 69_104 6", "2008_10 69_104 6 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 69_104 9", "2008_10 69_104 9 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 70_104 8", "2008_10 70_104 8 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 71_104 10", "2008_10 71_104 10 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 72_104 4", "2008_10 72_104 4 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 73_104 2", "2008_10 73_104 2 work s-rgb", "Interior, office and lab, Ward NV", "" ),
	new image_info_item ( "2008_10 73_104 7", "2008_10 73_104 7 work s-rgb", "Interior, office and lab, Ward NV", "" ),

	// 2008 10 Ely, NV, Railway Museum
	new image_info_item ( "2008_10 75_104 1", "2008_10 75_104 1 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 75_104 7", "2008_10 75_104 7 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 76_104 4", "2008_10 76_104 4 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 77_104 1", "2008_10 77_104 1 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 77_104 4", "2008_10 77_104 4 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 78_104 2", "2008_10 78_104 2 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 79_104 10", "2008_10 79_104 10 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 79_104 2", "2008_10 79_104 2 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 79_104 4", "2008_10 79_104 4 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 80_104 10", "2008_10 80_104 10 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 81_104 2", "2008_10 81_104 2 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 81_104 7", "2008_10 81_104 7 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 82_104 2", "2008_10 82_104 2 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 82_104 7", "2008_10 82_104 7 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 83_104 6", "2008_10 83_104 6 work s-rgb", "Rail car, Ely NV", "" ),
	new image_info_item ( "2008_10 83_104 7", "2008_10 83_104 7 work s-rgb", "Rail car, Ely NV", "" ),

	// 2008 10 Salt Wells, NV
	new image_info_item ( "2008_10 86_104 1", "2008_10 86_104 1 work s-rgb", "Burned brothel, Saly Wells NV", "" ),
	new image_info_item ( "2008_10 87_104 1", "2008_10 87_104 1 work s-rgb", "Burned brothel, Saly Wells NV", "" ),
	new image_info_item ( "2008_10 89_104 1", "2008_10 89_104 1 work s-rgb", "Burned brothel, Saly Wells NV", "" ),
	new image_info_item ( "2008_10 90_104 1", "2008_10 90_104 1 work s-rgb", "Burned brothel, Saly Wells NV", "" ),
	new image_info_item ( "2008_10 93_104 3", "2008_10 93_104 3 work s-rgb", "Burned brothel, Saly Wells NV", "" ),
	new image_info_item ( "2008_10 96_104 3", "2008_10 96_104 3 work s-rgb", "Burned brothel, Saly Wells NV", "" ),
	new image_info_item ( "2008_10 102_104 3", "2008_10 102_104 3 work s-rgb", "Burned brothel, Saly Wells NV", "" ),

	// 2008 10 Moonrise, US50, NV
	new image_info_item ( "2008_10 103_104 3", "2008_10 103_104 3 work s-rgb", "Moon, US50, Eastern NV", "" ),
	new image_info_item ( "2008_10 104_104 1", "2008_10 104_104 1 work s-rgb", "Moon, US50, Eastern NV", "" ),
	new image_info_item ( "2008_10 104_104 3", "2008_10 104_104 3 work s-rgb", "Moon, US50, Eastern NV", "" ),

	// 2009_03 Wonder Valley Houses, Mojave Desert, CA
	new image_info_item ( "2009_03 1_217 2", "2009_03 1_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #1" ),
	new image_info_item ( "2009_03 3_217 1", "2009_03 3_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #2" ),
	new image_info_item ( "2009_03 4_217 3", "2009_03 4_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #4" ),
	new image_info_item ( "2009_03 5_217 2", "2009_03 5_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #6" ),
	new image_info_item ( "2009_03 6_217 2", "2009_03 6_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #8" ),
	new image_info_item ( "2009_03 8_217 2", "2009_03 8_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #10" ),
	new image_info_item ( "2009_03 9_217 3", "2009_03 9_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #11" ),
	new image_info_item ( "2009_03 12_217 1", "2009_03 12_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #12" ),
	new image_info_item ( "2009_03 13_217 1", "2009_03 13_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #13" ),
	new image_info_item ( "2009_03 16_217 3", "2009_03 16_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #14" ),
	new image_info_item ( "2009_03 17_217 3", "2009_03 17_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #15" ),
	new image_info_item ( "2009_03 18_217 1", "2009_03 18_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #16" ),
	new image_info_item ( "2009_03 21_217 2", "2009_03 21_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #17" ),
	new image_info_item ( "2009_03 22_217 1", "2009_03 22_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #18" ),
	new image_info_item ( "2009_03 24_217 1", "2009_03 24_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #19" ),
	new image_info_item ( "2009_03 25_217 3", "2009_03 25_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #20" ),
	new image_info_item ( "2009_03 26_217 3", "2009_03 26_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #21" ),
	new image_info_item ( "2009_03 29_217 4", "2009_03 29_217 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #22" ),
	new image_info_item ( "2009_03 30_217 3", "2009_03 30_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #23" ),
	new image_info_item ( "2009_03 32_217 2", "2009_03 32_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #24" ),
	new image_info_item ( "2009_03 34_217 1", "2009_03 34_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #25" ),
	new image_info_item ( "2009_03 37_217 2", "2009_03 37_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #3" ),
	new image_info_item ( "2009_03 38_217 2", "2009_03 38_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #9" ),
	new image_info_item ( "2009_03 40_217 2", "2009_03 40_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #26" ),
	new image_info_item ( "2009_03 42_217 2", "2009_03 42_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #27" ),
	new image_info_item ( "2009_03 44_217 1", "2009_03 44_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #28" ),
	new image_info_item ( "2009_03 45_217 2", "2009_03 45_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #29" ),
	new image_info_item ( "2009_03 46_217 2", "2009_03 46_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #30" ),
	new image_info_item ( "2009_03 47_217 2", "2009_03 47_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #31" ),
	new image_info_item ( "2009_03 49_217 1", "2009_03 49_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #32" ),
	new image_info_item ( "2009_03 50_217 1", "2009_03 50_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #33" ),
	new image_info_item ( "2009_03 51_217 1", "2009_03 51_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #34" ),
	new image_info_item ( "2009_03 52_217 2", "2009_03 52_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #35" ),
	new image_info_item ( "2009_03 55_217 2", "2009_03 55_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #36" ),
	new image_info_item ( "2009_03 56_217 1", "2009_03 56_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #37" ),
	new image_info_item ( "2009_03 57_217 2", "2009_03 57_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #38" ),
	new image_info_item ( "2009_03 58_217 2", "2009_03 58_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #39" ),
	new image_info_item ( "2009_03 59_217 3", "2009_03 59_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #40" ),
	new image_info_item ( "2009_03 60_217 3", "2009_03 60_217 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #41" ),
	new image_info_item ( "2009_03 61_217 1", "2009_03 61_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #7" ),
	new image_info_item ( "2009_03 63_217 1", "2009_03 63_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #42" ),
	new image_info_item ( "2009_03 64_217 4", "2009_03 64_217 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #43" ),
	new image_info_item ( "2009_03 66_217 2", "2009_03 66_217 2 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #44" ),
	new image_info_item ( "2009_03 67_217 1", "2009_03 67_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #5" ),
	new image_info_item ( "2009_03 68_217 1", "2009_03 68_217 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #45" ),
	new image_info_item ( "2009_03 70_217 4", "2009_03 70_217 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #46" ),


	// 2009_03 Salton Sea, CA
	new image_info_item ( "2009_03 71_217 1", "2009_03 71_217 1 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 73_217 1", "2009_03 73_217 1 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 77_217 1", "2009_03 77_217 1 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 80_217 4", "2009_03 80_217 4 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 83_217 2", "2009_03 83_217 2 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 86_217 2", "2009_03 86_217 2 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 87_217 1", "2009_03 87_217 1 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 89_217 1", "2009_03 89_217 1 work s-rgb", "Wrecked Pier, Bombay Beach, Salton Sea, CA", "Wrecked Pier, Bombay Beach, Salton Sea, CA, #3" ),
	new image_info_item ( "2009_03 91_217 1", "2009_03 91_217 1 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 94_217 3", "2009_03 94_217 3 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 96_217 3", "2009_03 96_217 3 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 99_217 1", "2009_03 99_217 1 work s-rgb", "Salton Sea, CA", "Cloud, Salton Sea, CA, #2" ),
	new image_info_item ( "2009_03 100_217 4", "2009_03 100_217 4 work s-rgb", "Salton Sea, CA", "Cloud, Salton Sea, CA, #3" ),
	new image_info_item ( "2009_03 103_217 4", "2009_03 103_217 4 work s-rgb", "Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 107_217 4", "2009_03 107_217 4 work s-rgb", "Salton Sea, CA", "" ),


	// 2009_03 Owens Lake, CA
	new image_info_item ( "2009_03 139_217 1", "2009_03 139_217 1 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 143_217 2", "2009_03 143_217 2 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 146_217 4", "2009_03 146_217 4 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 148_217 4", "2009_03 148_217 4 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 149_217 4", "2009_03 149_217 4 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 152_217 3", "2009_03 152_217 3 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 153_217 3", "2009_03 153_217 3 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 154_217 3", "2009_03 154_217 3 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 159_217 4", "2009_03 159_217 4 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 160_217 4", "2009_03 160_217 4 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 161_217 1", "2009_03 161_217 1 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 162_217 1", "2009_03 162_217 1 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),
	new image_info_item ( "2009_03 164_217 4", "2009_03 164_217 4 work s-rgb", "Owens Lake, Owens Valley, CA", "" ),

	// 2009_03 Trona Pinnacles, CA
	new image_info_item ( "2009_03 176_217 1", "2009_03 176_217 1 work s-rgb", "Tufa, Trona Pinnacles, Trona, CA", "" ),
	new image_info_item ( "2009_03 178_217 4", "2009_03 178_217 4 work s-rgb", "Tufa, Trona Pinnacles, Trona, CA", "" ),
	new image_info_item ( "2009_03 181_217 3", "2009_03 181_217 3 work s-rgb", "Tufa, Trona Pinnacles, Trona, CA", "" ),
	new image_info_item ( "2009_03 183_217 1", "2009_03 183_217 1 work s-rgb", "Tufa, Trona Pinnacles, Trona, CA", "" ),
	new image_info_item ( "2009_03 186_217 3", "2009_03 186_217 3 work s-rgb", "Tufa, Trona Pinnacles, Trona, CA", "" ),
	new image_info_item ( "2009_03 188_217 3", "2009_03 188_217 3 work s-rgb", "Tufa, Trona Pinnacles, Trona, CA", "" ),


	// 2009_03 Abandoned School, Cedarvale NM
	new image_info_item ( "2009_03 189_217 2", "2009_03 189_217 2 work s-rgb", "Hallway, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 190_217 10", "2009_03 190_217 10 work s-rgb", "Hallway, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 190_217 3", "2009_03 190_217 3 work s-rgb", "Hallway, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 191_217 4", "2009_03 191_217 4 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 191_217 7", "2009_03 191_217 7 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 192_217 1", "2009_03 192_217 1 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 192_217 4", "2009_03 192_217 4 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 192_217 9", "2009_03 192_217 9 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 193_217 9", "2009_03 193_217 9 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 194_217 2", "2009_03 194_217 2 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 194_217 6", "2009_03 194_217 6 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "Classroom, Cedarvale NM, #3" ),
	new image_info_item ( "2009_03 194_217 9", "2009_03 194_217 9 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 195_217 1", "2009_03 195_217 1 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 195_217 7", "2009_03 195_217 7 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 196_217 4", "2009_03 196_217 4 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 196_217 7", "2009_03 196_217 7 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 197_217 2", "2009_03 197_217 2 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 197_217 4", "2009_03 197_217 4 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 197_217 7", "2009_03 197_217 7 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 198_217 3", "2009_03 198_217 3 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 198_217 7", "2009_03 198_217 7 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 199_217 1", "2009_03 199_217 1 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 199_217 4", "2009_03 199_217 4 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 199_217 7", "2009_03 199_217 7 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 200_217 3", "2009_03 200_217 3 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 200_217 6", "2009_03 200_217 6 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 201_217 8", "2009_03 201_217 8 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 202_217 1", "2009_03 202_217 1 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 203_217 1", "2009_03 203_217 1 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 203_217 4", "2009_03 203_217 4 work s-rgb", "Classroom, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 204_217 2", "2009_03 204_217 2 work s-rgb", "Gym, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 204_217 7", "2009_03 204_217 7 work s-rgb", "Gym, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 205A_217 2", "2009_03 205A_217 2 work s-rgb", "Gym, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 205_217 2", "2009_03 205_217 2 work s-rgb", "Gym, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 206_217 3", "2009_03 206_217 3 work s-rgb", "Gym, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 206_217 6", "2009_03 206_217 6 work s-rgb", "Gym, Abandoned School, Cedarvale, NM", "" ),
	new image_info_item ( "2009_03 206_217 9", "2009_03 206_217 9 work s-rgb", "Gym, Abandoned School, Cedarvale, NM", "" ),

	// 2009_03 Salton Sea Beach, Chair
	new image_info_item ( "2009_03 208_217 2", "2009_03 208_217 2 work s-rgb", "Ruins, Salton Sea Beach, Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 208_217 9", "2009_03 208_217 9 work s-rgb", "Ruins, Salton Sea Beach, Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 209_217 2", "2009_03 209_217 2 work s-rgb", "Ruins, Salton Sea Beach, Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 209_217 5", "2009_03 209_217 5 work s-rgb", "Ruins, Salton Sea Beach, Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 209_217 9", "2009_03 209_217 9 work s-rgb", "Ruins, Salton Sea Beach, Salton Sea, CA", "" ),
	new image_info_item ( "2009_03 210_217 6", "2009_03 210_217 6 work s-rgb", "Ruins, Salton Sea Beach, Salton Sea, CA", "" ),

	// 2009_03 Pool, Keeler CA
	new image_info_item ( "2009_03 211_217 3", "2009_03 211_217 3 work s-rgb", "Abandoned Pool, Keeler, CA", "" ),
	new image_info_item ( "2009_03 211_217 9", "2009_03 211_217 9 work s-rgb", "Abandoned Pool, Keeler, CA", "" ),
	new image_info_item ( "2009_03 212_217 10", "2009_03 212_217 10 work s-rgb", "Abandoned Pool, Keeler, CA", "" ),
	new image_info_item ( "2009_03 212_217 4", "2009_03 212_217 4 work s-rgb", "Abandoned Pool, Keeler, CA", "" ),
	new image_info_item ( "2009_03 214_217 3", "2009_03 214_217 3 work s-rgb", "Abandoned Pool, Keeler, CA", "" ),
	new image_info_item ( "2009_03 214_217 6", "2009_03 214_217 6 work s-rgb", "Abandoned Pool, Keeler, CA", "" ),
	new image_info_item ( "2009_03 215_217 1", "2009_03 215_217 1 work s-rgb", "Abandoned Pool, Keeler, CA", "" ),

	// 2009_03 Chloride Pit, Amboy CA
	new image_info_item ( "2009_03 216_217 2", "2009_03 216_217 2 work s-rgb", "Chloride Pit, Amboy, CA", "" ),
	new image_info_item ( "2009_03 216_217 7", "2009_03 216_217 7 work s-rgb", "Chloride Pit, Amboy, CA", "" ),
	new image_info_item ( "2009_03 217_217 3", "2009_03 217_217 3 work s-rgb", "Chloride Pit, Amboy, CA", "" ),
	new image_info_item ( "2009_03 217_217 8", "2009_03 217_217 8 work s-rgb", "Chloride Pit, Amboy, CA", "" ),

	// End 2009_03

	// 2009_07
	// Central Hallway, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 1_165 3", "2009_07 1_165 3 work s-rgb", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 1_165 8", "2009_07 1_165 8 work s-rgb", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 2_165 3", "2009_07 2_165 3 work s-rgb", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 2_165 9", "2009_07 2_165 9 work s-rgb", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 3_165 8", "2009_07 3_165 8 work s-rgb", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM, #2" ),
	new image_info_item ( "2009_07 4_165 4", "2009_07 4_165 4 work s-rgb", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 4_165 5", "2009_07 4_165 5 work s-rgb", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 5_165 4", "2009_07 5_165 4 work s-rgb", "Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "" ),

	// Room Off Central Hallway, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 7_165 3", "2009_07 7_165 3 work s-rgb", "Small Room Off Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "Chair, Small Room, Penitentiary New Mexico, Santa Fe, NM, #2" ),
	new image_info_item ( "2009_07 7_165 6", "2009_07 7_165 6 work s-rgb", "Small Room Off Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "Chair, Small Room, Penitentiary New Mexico, Santa Fe, NM, #1" ),
	new image_info_item ( "2009_07 8_165 6", "2009_07 8_165 6 work s-rgb", "Small Room Off Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "Chair, Small Room, Penitentiary New Mexico, Santa Fe, NM, #3" ),
	new image_info_item ( "2009_07 9_165 1", "2009_07 9_165 1 work s-rgb", "Small Room Off Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "Chair, Small Room, Penitentiary New Mexico, Santa Fe, NM, #4" ),
	new image_info_item ( "2009_07 10_165 4", "2009_07 10_165 4 work s-rgb", "Small Room Off Central Hallway, Penitentiary New Mexico, Santa Fe, NM", "Chair, Small Room, Penitentiary New Mexico, Santa Fe, NM, #5" ),

	// Barber Shop, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 11_165 9", "2009_07 11_165 9 work s-rgb", "Barber Shop, Penitentiary New Mexico, Santa Fe, NM", "Barber Shop, Penitentiary New Mexico, Santa Fe, NM, #1" ),
	new image_info_item ( "2009_07 12_165 3", "2009_07 12_165 3 work s-rgb", "Barber Shop, Penitentiary New Mexico, Santa Fe, NM", "Barber Shop, Penitentiary New Mexico, Santa Fe, NM, #2" ),
	new image_info_item ( "2009_07 12_165 6", "2009_07 12_165 6 work s-rgb", "Barber Shop, Penitentiary New Mexico, Santa Fe, NM", "Barber Shop, Penitentiary New Mexico, Santa Fe, NM, #3" ),
	new image_info_item ( "2009_07 12_165 9", "2009_07 12_165 9 work s-rgb", "Barber Shop, Penitentiary New Mexico, Santa Fe, NM", "Barber Shop, Penitentiary New Mexico, Santa Fe, NM, #4" ),

	// Protestant and Catholic Chapels, Penitentiary New Mexico, Santa Fe, NM
	new image_info_item ( "2009_07 13_165 7", "2009_07 13_165 7 work s-rgb", "Chapel, Penitentiary New Mexico, Santa Fe, NM", "Chapel, Penitentiary New Mexico, Santa Fe, NM, #1" ),
	new image_info_item ( "2009_07 14_165 3", "2009_07 14_165 3 work s-rgb", "Chapel, Penitentiary New Mexico, Santa Fe, NM", "Chapel, Penitentiary New Mexico, Santa Fe, NM, #2" ),
	new image_info_item ( "2009_07 14_165 7", "2009_07 14_165 7 work s-rgb", "Chapel, Penitentiary New Mexico, Santa Fe, NM", "Chapel, Penitentiary New Mexico, Santa Fe, NM, #3" ),
	new image_info_item ( "2009_07 15_165 1", "2009_07 15_165 1 work s-rgb", "Chapel, Penitentiary New Mexico, Santa Fe, NM", "Chapel, Penitentiary New Mexico, Santa Fe, NM, #4" ),
	new image_info_item ( "2009_07 16_165 1", "2009_07 16_165 1 work s-rgb", "Chapel, Penitentiary New Mexico, Santa Fe, NM", "Chapel, Penitentiary New Mexico, Santa Fe, NM, #5" ),
	new image_info_item ( "2009_07 16_165 4", "2009_07 16_165 4 work s-rgb", "Chapel, Penitentiary New Mexico, Santa Fe, NM", "Chapel, Penitentiary New Mexico, Santa Fe, NM, #6" ),

	// Miscellaneous, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 17_165 3", "2009_07 17_165 3 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 18_165 4", "2009_07 18_165 4 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 19_165 1", "2009_07 19_165 1 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 19_165 9", "2009_07 19_165 9 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 21_165 7", "2009_07 21_165 7 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 22_165 3", "2009_07 22_165 3 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 22_165 9", "2009_07 22_165 9 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "Basement Hall, Penitentiary New Mexico, Santa Fe, NM, #1" ),
	new image_info_item ( "2009_07 23_165 4", "2009_07 23_165 4 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 23_165 7", "2009_07 23_165 7 work s-rgb", "Penitentiary New Mexico, Santa Fe, NM", "" ),

	// Dormitories, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 24_165 1", "2009_07 24_165 1 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 25_165 1", "2009_07 25_165 1 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 25_165 5", "2009_07 25_165 5 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 25_165 9", "2009_07 25_165 9 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 26_165 1", "2009_07 26_165 1 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 26_165 4", "2009_07 26_165 4 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 26_165 7", "2009_07 26_165 7 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 28_165 6", "2009_07 28_165 6 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 29_165 3", "2009_07 29_165 3 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 29_165 6", "2009_07 29_165 6 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 29_165 7", "2009_07 29_165 7 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 30_165 3", "2009_07 30_165 3 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 30_165 4", "2009_07 30_165 4 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 31_165 4", "2009_07 31_165 4 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 32_165 10", "2009_07 32_165 10 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 32_165 6", "2009_07 32_165 6 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 34_165 2", "2009_07 34_165 2 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 34_165 7", "2009_07 34_165 7 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 35_165 8", "2009_07 35_165 8 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 36_165 8", "2009_07 36_165 8 work s-rgb", "Dormitory, Penitentiary New Mexico, Santa Fe, NM", "" ),

	// Infirmary, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 37_165 2", "2009_07 37_165 2 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #1" ),
	new image_info_item ( "2009_07 37_165 4", "2009_07 37_165 4 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #2" ),
	new image_info_item ( "2009_07 38_165 2", "2009_07 38_165 2 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #3" ),
	new image_info_item ( "2009_07 38_165 8", "2009_07 38_165 8 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #4" ),

	// Infirmary, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 43_165 2", "2009_07 43_165 2 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #5" ),
	new image_info_item ( "2009_07 43_165 4", "2009_07 43_165 4 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #6" ),
	new image_info_item ( "2009_07 43_165 6", "2009_07 43_165 6 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #7" ),
	new image_info_item ( "2009_07 44_165 5", "2009_07 44_165 5 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #8" ),
	new image_info_item ( "2009_07 45_165 4", "2009_07 45_165 4 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #9" ),
	new image_info_item ( "2009_07 45_165 6", "2009_07 45_165 6 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #10" ),
	new image_info_item ( "2009_07 46_165 4", "2009_07 46_165 4 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #11" ),
	new image_info_item ( "2009_07 46_165 8", "2009_07 46_165 8 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #12" ),

	// Infirmary, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 48_165 5", "2009_07 48_165 5 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #13" ),
	new image_info_item ( "2009_07 49_165 9", "2009_07 49_165 9 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #14" ),
	new image_info_item ( "2009_07 50_165 2", "2009_07 50_165 2 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #15" ),
	new image_info_item ( "2009_07 50_165 5", "2009_07 50_165 5 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Infirmary, Penitentiary New Mexico, Santa Fe, NM, #16" ),
	new image_info_item ( "2009_07 51_165 3", "2009_07 51_165 3 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Chair, Infirmary, Penitentiary New Mexico, Santa Fe, NM, #17" ),
	new image_info_item ( "2009_07 51_165 9", "2009_07 51_165 9 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Chair, Infirmary, Penitentiary New Mexico, Santa Fe, NM, #18" ),
	new image_info_item ( "2009_07 52_165 6", "2009_07 52_165 6 work s-rgb", "Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Chair, Infirmary, Penitentiary New Mexico, Santa Fe, NM, #19" ),

	// Pyschiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 39_165 4", "2009_07 39_165 4 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 40_165 5", "2009_07 40_165 5 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 41_165 1", "2009_07 41_165 1 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 41_165 9", "2009_07 41_165 9 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 42_165 1", "2009_07 42_165 1 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 42_165 5", "2009_07 42_165 5 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),

	// Pyschiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 47_165 3", "2009_07 47_165 3 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 47_165 9", "2009_07 47_165 9 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),

	// Pyschiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 53_165 3", "2009_07 53_165 3 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 54_165 6", "2009_07 54_165 6 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 55_165 7", "2009_07 55_165 7 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 56_165 6", "2009_07 56_165 6 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 57_165 4", "2009_07 57_165 4 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "Psychiatric Ward, Penitentiary New Mexico, Santa Fe, NM, #3" ),
	new image_info_item ( "2009_07 57_165 8", "2009_07 57_165 8 work s-rgb", "Psychiatric Cell Block, Infirmary, Penitentiary New Mexico, Santa Fe, NM", "" ),

	// Cell Blocks, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 58_165 3", "2009_07 58_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 58_165 6", "2009_07 58_165 6 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 58_165 7", "2009_07 58_165 7 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 59_165 3", "2009_07 59_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 59_165 9", "2009_07 59_165 9 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "Cell Block, Penitentiary New Mexico, Santa Fe, NM, #5" ),
	new image_info_item ( "2009_07 61_165 6", "2009_07 61_165 6 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 61_165 9", "2009_07 61_165 9 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 62_165 3", "2009_07 62_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 62_165 8", "2009_07 62_165 8 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 63_165 3", "2009_07 63_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 64_165 7", "2009_07 64_165 7 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 65_165 9", "2009_07 65_165 9 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 66_165 3", "2009_07 66_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 66_165 5", "2009_07 66_165 5 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 66_165 9", "2009_07 66_165 9 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 67_165 1", "2009_07 67_165 1 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 67_165 4", "2009_07 67_165 4 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 67_165 8", "2009_07 67_165 8 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 68_165 4", "2009_07 68_165 4 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 68_165 8", "2009_07 68_165 8 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 69_165 4", "2009_07 69_165 4 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 69_165 8", "2009_07 69_165 8 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 70_165 10", "2009_07 70_165 10 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 70_165 3", "2009_07 70_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 70_165 8", "2009_07 70_165 8 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 71_165 1", "2009_07 71_165 1 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 71_165 9", "2009_07 71_165 9 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 72_165 3", "2009_07 72_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 72_165 7", "2009_07 72_165 7 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 73_165 3", "2009_07 73_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 74_165 3", "2009_07 74_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 74_165 9", "2009_07 74_165 9 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "Mattresses in Cell Block, Penitentiary New Mexico, Santa Fe, NM, #2" ),
	new image_info_item ( "2009_07 75_165 2", "2009_07 75_165 2 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 75_165 8", "2009_07 75_165 8 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "Cell Block, Penitentiary New Mexico, Santa Fe, NM, #4" ),
	new image_info_item ( "2009_07 76_165 3", "2009_07 76_165 3 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 76_165 7", "2009_07 76_165 7 work s-rgb", "Cell Block, Penitentiary New Mexico, Santa Fe, NM", "" ),

	// Gas Chamber, Penitentiary New Mexico, Santa Fe NM
	new image_info_item ( "2009_07 79_165 9", "2009_07 79_165 9 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 80_165 7", "2009_07 80_165 7 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 81_165 5", "2009_07 81_165 5 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 82_165 10", "2009_07 82_165 10 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 82_165 4", "2009_07 82_165 4 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 83_165 6", "2009_07 83_165 6 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 83_165 9", "2009_07 83_165 9 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 84_165 2", "2009_07 84_165 2 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 84_165 5", "2009_07 84_165 5 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 85_165 2", "2009_07 85_165 2 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),
	new image_info_item ( "2009_07 85_165 6", "2009_07 85_165 6 work s-rgb", "Gas Chamber, Penitentiary New Mexico, Santa Fe, NM", "" ),

	// Santa Fe Railyard, Albuquerque NM
	new image_info_item ( "2009_07 86_165 1", "2009_07 86_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 86_165 7", "2009_07 86_165 7 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 87_165 2", "2009_07 87_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 88_165 2", "2009_07 88_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 90_165 1", "2009_07 90_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 90_165 7", "2009_07 90_165 7 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 92_165 4", "2009_07 92_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 92_165 7", "2009_07 92_165 7 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 93_165 1", "2009_07 93_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 94_165 1", "2009_07 94_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 94_165 6", "2009_07 94_165 6 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 95_165 2", "2009_07 95_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 95_165 3", "2009_07 95_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 96_165 5", "2009_07 96_165 5 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 97_165 1", "2009_07 97_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 98_165 2", "2009_07 98_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 98_165 5", "2009_07 98_165 5 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 99_165 5", "2009_07 99_165 5 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 99_165 8", "2009_07 99_165 8 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 100_165 4", "2009_07 100_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 101_165 1", "2009_07 101_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 102_165 2", "2009_07 102_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 102_165 8", "2009_07 102_165 8 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 103_165 4", "2009_07 103_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 103_165 8", "2009_07 103_165 8 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 104_165 3", "2009_07 104_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 105_165 4", "2009_07 105_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 106_165 3", "2009_07 106_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 106_165 6", "2009_07 106_165 6 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 107_165 1", "2009_07 107_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 108_165 4", "2009_07 108_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 109_165 2", "2009_07 109_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 109_165 7", "2009_07 109_165 7 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 110_165 5", "2009_07 110_165 5 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 111_165 3", "2009_07 111_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 111_165 7", "2009_07 111_165 7 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 112_165 1", "2009_07 112_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 112_165 7", "2009_07 112_165 7 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 113_165 4", "2009_07 113_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 113_165 8", "2009_07 113_165 8 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 114_165 10", "2009_07 114_165 10 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 115_165 9", "2009_07 115_165 9 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 116_165 2", "2009_07 116_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 116_165 8", "2009_07 116_165 8 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 117_165 4", "2009_07 117_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 117_165 8", "2009_07 117_165 8 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 118_165 11", "2009_07 118_165 11 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 118_165 3", "2009_07 118_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 119_165 4", "2009_07 119_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 120_165 10", "2009_07 120_165 10 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 121_165 3", "2009_07 121_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 123_165 4", "2009_07 123_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 124_165 7", "2009_07 124_165 7 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 125_165 3", "2009_07 125_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 128_165 4", "2009_07 128_165 4 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 129_165 2", "2009_07 129_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 130_165 1", "2009_07 130_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 132_165 1", "2009_07 132_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 133_165 5", "2009_07 133_165 5 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 134_165 1", "2009_07 134_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 136_165 1", "2009_07 136_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 136_165 10", "2009_07 136_165 10 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 140_165 8", "2009_07 140_165 8 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 141_165 1", "2009_07 141_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 141_165 7", "2009_07 141_165 7 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),

	// Santa Fe Railyard, Albuquerque NM, panoramic
	new image_info_item ( "2009_07 142_165 1", "2009_07 142_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 143_165 1", "2009_07 143_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 146_165 2", "2009_07 146_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 147_165 1", "2009_07 147_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 148_165 1", "2009_07 148_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 150_165 2", "2009_07 150_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 152_165 3", "2009_07 152_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 153_165 2", "2009_07 153_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 155_165 3", "2009_07 155_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 156_165 1", "2009_07 156_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "Santa Fe Railroad Repair Yard, Albuquerque, NM, #1" ),
	new image_info_item ( "2009_07 157_165 3", "2009_07 157_165 3 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 158_165 2", "2009_07 158_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 159_165 2", "2009_07 159_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 160_165 2", "2009_07 160_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 161_165 2", "2009_07 161_165 2 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 163_165 1", "2009_07 163_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 164_165 1", "2009_07 164_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	new image_info_item ( "2009_07 165_165 1", "2009_07 165_165 1 work s-rgb", "Santa Fe Railroad Repair Yard, Albuquerque, NM", "" ),
	// End 2009_07

	// 2009_11
	// Salton Sea, panoramic
	new image_info_item ( "2009_11 5_280 3", "2009_11 5_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #4"),
	new image_info_item ( "2009_11 6_280 4", "2009_11 6_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #5"),
	new image_info_item ( "2009_11 8_280 4", "2009_11 8_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #6"),
	new image_info_item ( "2009_11 10_280 4", "2009_11 10_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #7"),
	new image_info_item ( "2009_11 11_280 3", "2009_11 11_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #8"),
	new image_info_item ( "2009_11 13_280 1", "2009_11 13_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #1"),
	new image_info_item ( "2009_11 14_280 4", "2009_11 14_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #9"),
	new image_info_item ( "2009_11 16_280 3", "2009_11 16_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #10"),
	new image_info_item ( "2009_11 17_280 2", "2009_11 17_280 2 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #11"),
	new image_info_item ( "2009_11 19_280 3", "2009_11 19_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #12"),
	new image_info_item ( "2009_11 21_280 3", "2009_11 21_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #13"),
	new image_info_item ( "2009_11 24_280 3", "2009_11 24_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #14"),
	new image_info_item ( "2009_11 25_280 3", "2009_11 25_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #15"),
	new image_info_item ( "2009_11 26_280 3", "2009_11 26_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #2"),
	new image_info_item ( "2009_11 27_280 2", "2009_11 27_280 2 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #16"),
	new image_info_item ( "2009_11 34_280 3", "2009_11 34_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #17"),

	new image_info_item ( "2009_11 35_280 3", "2009_11 35_280 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #2"),
	new image_info_item ( "2009_11 37_280 2", "2009_11 37_280 2 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #3"),

	new image_info_item ( "2009_11 39_280 1", "2009_11 39_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #20"),
	new image_info_item ( "2009_11 41_280 3", "2009_11 41_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #3"),
	new image_info_item ( "2009_11 43_280 4", "2009_11 43_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #21"),
	new image_info_item ( "2009_11 44_280 1", "2009_11 44_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #22"),
	new image_info_item ( "2009_11 45_280 4", "2009_11 45_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #23"),
	new image_info_item ( "2009_11 48_280 3", "2009_11 48_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #24"),
	new image_info_item ( "2009_11 51_280 3", "2009_11 51_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #25"),
	new image_info_item ( "2009_11 52_280 1", "2009_11 52_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #26"),
	new image_info_item ( "2009_11 53_280 3", "2009_11 53_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #27"),
	new image_info_item ( "2009_11 57_280 3", "2009_11 57_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #28"),
	new image_info_item ( "2009_11 61_280 3", "2009_11 61_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #29"),
	new image_info_item ( "2009_11 62_280 1", "2009_11 62_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #30"),
	new image_info_item ( "2009_11 63_280 3", "2009_11 63_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #31"),
	new image_info_item ( "2009_11 67_280 3", "2009_11 67_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #32"),
	new image_info_item ( "2009_11 70_280 1", "2009_11 70_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #33"),
	new image_info_item ( "2009_11 71_280 3", "2009_11 71_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #34"),
	new image_info_item ( "2009_11 75_280 3", "2009_11 75_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #35"),

	new image_info_item ( "2009_11 77_280 1", "2009_11 77_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #4"),

	new image_info_item ( "2009_11 83_280 1", "2009_11 83_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #36"),

	new image_info_item ( "2009_11 87_280 1", "2009_11 87_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #5"),
	new image_info_item ( "2009_11 88_280 3", "2009_11 88_280 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #6"),
	new image_info_item ( "2009_11 89_280 3", "2009_11 89_280 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #1"),
	new image_info_item ( "2009_11 91_280 3", "2009_11 91_280 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #7"),

	new image_info_item ( "2009_11 93_280 3", "2009_11 93_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #37"),

	new image_info_item ( "2009_11 102_280 1", "2009_11 102_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #8"),
	new image_info_item ( "2009_11 103_280 3", "2009_11 103_280 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #9"),

	new image_info_item ( "2009_11 105_280 3", "2009_11 105_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #38"),
	new image_info_item ( "2009_11 109_280 3", "2009_11 109_280 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #39"),

	// 2009_11 Wonder Valley Houses, Mojave Desert, CA
	new image_info_item ( "2009_11 113_280 3", "2009_11 113_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #47" ),
	new image_info_item ( "2009_11 114_280 4", "2009_11 114_280 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #48" ),
	new image_info_item ( "2009_11 115_280 4", "2009_11 115_280 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #49" ),
	new image_info_item ( "2009_11 117_280 1", "2009_11 117_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #50" ),
	new image_info_item ( "2009_11 118_280 1", "2009_11 118_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #51" ),
	new image_info_item ( "2009_11 120_280 1", "2009_11 120_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #52" ),
	new image_info_item ( "2009_11 121_280 3", "2009_11 121_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #53" ),
	new image_info_item ( "2009_11 122_280 3", "2009_11 122_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #54" ),
	new image_info_item ( "2009_11 123_280 3", "2009_11 123_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #55" ),
	new image_info_item ( "2009_11 125_280 1", "2009_11 125_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #56" ),
	new image_info_item ( "2009_11 126_280 3", "2009_11 126_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #57" ),
	new image_info_item ( "2009_11 128_280 3", "2009_11 128_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #58" ),
	new image_info_item ( "2009_11 129_280 1", "2009_11 129_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #59" ),
	new image_info_item ( "2009_11 131_280 3", "2009_11 131_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #60" ),
	new image_info_item ( "2009_11 133_280 1", "2009_11 133_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #61" ),
	new image_info_item ( "2009_11 134_280 3", "2009_11 134_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #62" ),
	new image_info_item ( "2009_11 138_280 3", "2009_11 138_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #63" ),
	new image_info_item ( "2009_11 140_280 1", "2009_11 140_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #64" ),
	new image_info_item ( "2009_11 142_280 1", "2009_11 142_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #65" ),
	new image_info_item ( "2009_11 144_280 4", "2009_11 144_280 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #66" ),
	new image_info_item ( "2009_11 145_280 4", "2009_11 145_280 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #67" ),
	new image_info_item ( "2009_11 146_280 1", "2009_11 146_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #68" ),
	new image_info_item ( "2009_11 147_280 3", "2009_11 147_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #69" ),
	new image_info_item ( "2009_11 149_280 3", "2009_11 149_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #70" ),
	new image_info_item ( "2009_11 151_280 3", "2009_11 151_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #71" ),
	new image_info_item ( "2009_11 153_280 3", "2009_11 153_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #72" ),
	new image_info_item ( "2009_11 154_280 4", "2009_11 154_280 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #73" ),
	new image_info_item ( "2009_11 155_280 3", "2009_11 155_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #74" ),
	new image_info_item ( "2009_11 157_280 4", "2009_11 157_280 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #75" ),
	new image_info_item ( "2009_11 159_280 3", "2009_11 159_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #76" ),
	new image_info_item ( "2009_11 163_280 3", "2009_11 163_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #77" ),
	new image_info_item ( "2009_11 168_280 1", "2009_11 168_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #78" ),
	new image_info_item ( "2009_11 170_280 3", "2009_11 170_280 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #79" ),
	new image_info_item ( "2009_11 171_280 1", "2009_11 171_280 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #80" ),

	// White Sands National Monument, NM
	new image_info_item ( "2009_11 181_280 3", "2009_11 181_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #1" ),
	new image_info_item ( "2009_11 182_280 3", "2009_11 182_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #2" ),
	new image_info_item ( "2009_11 186_280 3", "2009_11 186_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #3" ),
	new image_info_item ( "2009_11 187_280 1", "2009_11 187_280 1 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #4" ),
	new image_info_item ( "2009_11 191_280 3", "2009_11 191_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #5" ),
	new image_info_item ( "2009_11 192_280 1", "2009_11 192_280 1 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #6" ),
	new image_info_item ( "2009_11 198_280 3", "2009_11 198_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #7" ),
	new image_info_item ( "2009_11 199_280 1", "2009_11 199_280 1 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #8" ),
	new image_info_item ( "2009_11 201_280 2", "2009_11 201_280 2 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #9" ),
	new image_info_item ( "2009_11 204_280 3", "2009_11 204_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #10" ),
	new image_info_item ( "2009_11 205_280 3", "2009_11 205_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #11" ),
	new image_info_item ( "2009_11 207_280 3", "2009_11 207_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #12" ),
	new image_info_item ( "2009_11 209_280 3", "2009_11 209_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #13" ),
	new image_info_item ( "2009_11 211_280 3", "2009_11 211_280 3 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #14" ),
	new image_info_item ( "2009_11 213_280 1", "2009_11 213_280 1 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #15" ),
	new image_info_item ( "2009_11 214_280 1", "2009_11 214_280 1 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #16" ),
	new image_info_item ( "2009_11 216_280 1", "2009_11 216_280 1 work s-rgb", "Gypsum Dunes, White Sands National Monument, NM", "Gypsum Dunes, White Sands National Monument, NM, #17" ),

	// Some Sunsets
	new image_info_item ( "2009_11 174_280 3", "2009_11 174_280 3 work s-rgb", "Sunset, Wonder Valley, CA", "" ),
	new image_info_item ( "2009_11 176_280 1", "2009_11 176_280 1 work s-rgb", "Sunset, Wonder Valley, CA", "" ),
	new image_info_item ( "2009_11 177_280 3", "2009_11 177_280 3 work s-rgb", "Sunset, Wonder Valley, CA", "" ),
	new image_info_item ( "2009_11 193_280 4", "2009_11 193_280 4 work s-rgb", "Sunset, near Tucson AZ", "" ),
	new image_info_item ( "2009_11 194_280 4", "2009_11 194_280 4 work s-rgb", "Sunset, near Tucson AZ", "" ),

	// Abandoned Spa, Salton Sea, CA
	new image_info_item ( "2009_11 219_280 1", "2009_11 219_280 1 work s-rgb", "Abandoned Spa, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #1" ),
	new image_info_item ( "2009_11 220_280 1", "2009_11 220_280 1 work s-rgb", "Abandoned Spa, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #2" ),
	new image_info_item ( "2009_11 224_280 1", "2009_11 224_280 1 work s-rgb", "Abandoned Spa, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #3" ),
	new image_info_item ( "2009_11 226_280 1", "2009_11 226_280 1 work s-rgb", "Abandoned Spa, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #4" ),
	new image_info_item ( "2009_11 227_280 4", "2009_11 227_280 4 work s-rgb", "Abandoned Spa, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #5" ),
	new image_info_item ( "2009_11 231_280 1", "2009_11 231_280 1 work s-rgb", "Abandoned Spa, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #6" ),
	new image_info_item ( "2009_11 232_280 2", "2009_11 232_280 2 work s-rgb", "Abandoned Spa, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #7" ),

	// Abandoned Red Hill Marina, Salton Sea, CA
	new image_info_item ( "2009_11 233_280 1", "2009_11 233_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #10" ),
	new image_info_item ( "2009_11 234_280 1", "2009_11 234_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #11" ),
	new image_info_item ( "2009_11 235_280 1", "2009_11 235_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #12" ),
	new image_info_item ( "2009_11 236_280 1", "2009_11 236_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #13" ),
	new image_info_item ( "2009_11 237_280 4", "2009_11 237_280 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #14" ),
	new image_info_item ( "2009_11 238_280 4", "2009_11 238_280 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #15" ),
	new image_info_item ( "2009_11 241_280 2", "2009_11 241_280 2 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #16" ),
	new image_info_item ( "2009_11 243_280 4", "2009_11 243_280 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #17" ),
	new image_info_item ( "2009_11 244_280 1", "2009_11 244_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #18" ),
	new image_info_item ( "2009_11 247_280 1", "2009_11 247_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #19" ),
	new image_info_item ( "2009_11 248_280 4", "2009_11 248_280 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #20" ),
	new image_info_item ( "2009_11 253_280 2", "2009_11 253_280 2 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #21" ),
	new image_info_item ( "2009_11 256_280 1", "2009_11 256_280 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #22" ),

	// Bombay Beach, Salton Sea, CA
	new image_info_item ( "2009_11 263_280 1", "2009_11 263_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #40" ),
	new image_info_item ( "2009_11 266_280 4", "2009_11 266_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #41" ),
	new image_info_item ( "2009_11 268_280 4", "2009_11 268_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #42" ),
	new image_info_item ( "2009_11 269_280 4", "2009_11 269_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #43" ),
	new image_info_item ( "2009_11 270_280 4", "2009_11 270_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #44" ),
	new image_info_item ( "2009_11 272_280 1", "2009_11 272_280 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #45" ),
	new image_info_item ( "2009_11 274_280 4", "2009_11 274_280 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #46" ),

	// End 2009_11

	// Start 2010_04
	// 2010_04 Bombay Beach Structures, Chair
	new image_info_item ( "2010_04 1_225 1", "2010_04 1_225 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #47" ),
	new image_info_item ( "2010_04 4_225 1", "2010_04 4_225 1 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #48" ),
	new image_info_item ( "2010_04 8_225 4", "2010_04 8_225 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #49" ),
	new image_info_item ( "2010_04 14_225 3", "2010_04 14_225 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #50" ),
	new image_info_item ( "2010_04 15_225 3", "2010_04 15_225 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #51" ),
	new image_info_item ( "2010_04 18_225 3", "2010_04 18_225 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #52" ),

	// 2010_04 Red Hill Marina
	new image_info_item ( "2010_04 19_225 1", "2010_04 19_225 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #23" ),
	new image_info_item ( "2010_04 21_225 3", "2010_04 21_225 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #24" ),
	new image_info_item ( "2010_04 22_225 3", "2010_04 22_225 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #25" ),
	new image_info_item ( "2010_04 24_225 4", "2010_04 24_225 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #26" ),
	new image_info_item ( "2010_04 25_225 1", "2010_04 25_225 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #27" ),
	new image_info_item ( "2010_04 26_225 4", "2010_04 26_225 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #28" ),

	// 2010_04 Wrecked Spa north of Red Hill Marina, east shore
	new image_info_item ( "2010_04 27_225 1", "2010_04 27_225 1 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 29_225 2", "2010_04 29_225 2 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #2" ),
	new image_info_item ( "2010_04 31_225 1", "2010_04 31_225 1 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #3" ),
	new image_info_item ( "2010_04 36_225 2", "2010_04 36_225 2 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #4" ),
	new image_info_item ( "2010_04 37_225 1", "2010_04 37_225 1 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #5" ),
	new image_info_item ( "2010_04 38_225 1", "2010_04 38_225 1 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #6" ),
	new image_info_item ( "2010_04 40_225 1", "2010_04 40_225 1 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #7" ),
	new image_info_item ( "2010_04 41_225 1", "2010_04 41_225 1 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #8" ),
	new image_info_item ( "2010_04 42_225 1", "2010_04 42_225 1 work s-rgb", "Abandoned Spa, East Shore, Salton Sea, CA", "Abandoned Spa, Salton Sea, CA, #9" ),

	// 2010_04 Tufa field near Red Hill Marina, east shore
	new image_info_item ( "2010_04 48_225 1", "2010_04 48_225 1 work s-rgb", "Tufa, Red Hill Marina, Salton Sea, CA", "Tufa, Red Hill Marina, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 51_225 1", "2010_04 51_225 1 work s-rgb", "Tufa, Red Hill Marina, Salton Sea, CA", "Tufa, Red Hill Marina, Salton Sea, CA, #2" ),
	new image_info_item ( "2010_04 52_225 1", "2010_04 52_225 1 work s-rgb", "Tufa, Red Hill Marina, Salton Sea, CA", "Tufa, Red Hill Marina, Salton Sea, CA, #4" ),
	new image_info_item ( "2010_04 56_225 1", "2010_04 56_225 1 work s-rgb", "Tufa, Red Hill Marina, Salton Sea, CA", "Tufa, Red Hill Marina, Salton Sea, CA, #5" ),
	new image_info_item ( "2010_04 57_225 1", "2010_04 57_225 1 work s-rgb", "Tufa, Red Hill Marina, Salton Sea, CA", "Tufa, Red Hill Marina, Salton Sea, CA, #3" ),
	new image_info_item ( "2010_04 59_225 3", "2010_04 59_225 3 work s-rgb", "Tufa, Red Hill Marina, Salton Sea, CA", "Tufa, Red Hill Marina, Salton Sea, CA, #6" ),

	// 2010_04 Site of abandoned motel, north shore.  Demolished and now gone.
	new image_info_item ( "2010_04 62_225 3", "2010_04 62_225 3 work s-rgb", "", "" ),
	new image_info_item ( "2010_04 63_225 1", "2010_04 63_225 1 work s-rgb", "", "" ),
	new image_info_item ( "2010_04 67_225 4", "2010_04 67_225 4 work s-rgb", "Site, Abandoned Motel, North Shore, Salton Sea, CA", "Site, Abandoned Motel, North Shore, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 69_225 1", "2010_04 69_225 1 work s-rgb", "Site, Abandoned Motel, North Shore, Salton Sea, CA", "Site, Abandoned Motel, North Shore, Salton Sea, CA, #2" ),
	new image_info_item ( "2010_04 72_225 1", "2010_04 72_225 1 work s-rgb", "Site, Abandoned Motel, North Shore, Salton Sea, CA", "Site, Abandoned Motel, North Shore, Salton Sea, CA, #3" ),
	new image_info_item ( "2010_04 77_225 3", "2010_04 77_225 3 work s-rgb", "Site, Abandoned Motel, North Shore, Salton Sea, CA", "Site, Abandoned Motel, North Shore, Salton Sea, CA, #4" ),
	new image_info_item ( "2010_04 79_225 3", "2010_04 79_225 3 work s-rgb", "Cafe, Salton Sea, CA", "Cafe, Salton Sea, CA, #2" ),

	// 2010_04 Salton Sea Beach, Palms, trailer
	new image_info_item ( "2010_04 81_225 2", "2010_04 81_225 2 work s-rgb", "Burned Palms, Salton Sea, CA", "Burned Palms, Salton Sea, CA, #2" ),
	new image_info_item ( "2010_04 82_225 4", "2010_04 82_225 4 work s-rgb", "Burned Palms, Salton Sea, CA", "Burned Palms, Salton Sea, CA, #3" ),
	new image_info_item ( "2010_04 84_225 1", "2010_04 84_225 1 work s-rgb", "Burned Palms, Salton Sea, CA", "Burned Palms, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 86_225 1", "2010_04 86_225 1 work s-rgb", "Pink Trailer, Salton Sea, CA", "Pink Trailer, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 88_225 1", "2010_04 88_225 1 work s-rgb", "Pink Trailer, Salton Sea, CA", "Pink Trailer, Salton Sea, CA, #2" ),

	// 2010_04 Salton Sea Beach, Marina, Palms
	new image_info_item ( "2010_04 89_225 2", "2010_04 89_225 2 work s-rgb", "Burned Palms, Salton Sea, CA", "Burned Palms, Salton Sea, CA, #4" ),
	new image_info_item ( "2010_04 92_225 3", "2010_04 92_225 3 work s-rgb", "Burned Palms, Salton Sea, CA", "Burned Palms, Salton Sea, CA, #5" ),

	// 2010_04 Salton City, unfinished houses
	new image_info_item ( "2010_04 99_225 3", "2010_04 99_225 3 work s-rgb", "Unfinished House, Salton City, CA", "Unfinished House, Salton City, CA, #1" ),
	new image_info_item ( "2010_04 102_225 3", "2010_04 102_225 3 work s-rgb", "Unfinished House, Salton City, CA", "Unfinished House, Salton City, CA, #2" ),
	new image_info_item ( "2010_04 103_225 3", "2010_04 103_225 3 work s-rgb", "Unfinished House, Salton City, CA", "Unfinished House, Salton City, CA, #3" ),

	// 2010_04 Red Hill Marina, Geothermal plant
	new image_info_item ( "2010_04 106_225 3", "2010_04 106_225 3 work s-rgb", "Geothermal Plants, Abandoned Red Hill Marina, Salton Sea, CA", "Geothermal Plants, Abandoned Red Hill Marina, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 107_225 1", "2010_04 107_225 1 work s-rgb", "Geothermal Plants, Abandoned Red Hill Marina, Salton Sea, CA", "Geothermal Plants, Abandoned Red Hill Marina, Salton Sea, CA, #2" ),

	// 2010_04 Red Hill Marina, water, sunset, moonrise
	new image_info_item ( "2010_04 110_225 1", "2010_04 110_225 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Moon, Abandoned Red Hill Marina, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 113_225 4", "2010_04 113_225 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Moon, Abandoned Red Hill Marina, Salton Sea, CA, #2" ),
	new image_info_item ( "2010_04 115_225 4", "2010_04 115_225 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Moon, Abandoned Red Hill Marina, Salton Sea, CA, #3" ),
	new image_info_item ( "2010_04 119_225 1", "2010_04 119_225 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Moon, Abandoned Red Hill Marina, Salton Sea, CA, #4" ),

	// 2010_04 Red Hill Marina
	new image_info_item ( "2010_04 122_225 3", "2010_04 122_225 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #29" ),
	new image_info_item ( "2010_04 124_225 1", "2010_04 124_225 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #30" ),
	new image_info_item ( "2010_04 126_225 3", "2010_04 126_225 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #31" ),
	new image_info_item ( "2010_04 127_225 1", "2010_04 127_225 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #32" ),
	new image_info_item ( "2010_04 130_225 4", "2010_04 130_225 4 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #33" ),
	new image_info_item ( "2010_04 131_225 3", "2010_04 131_225 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #34" ),
	new image_info_item ( "2010_04 132_225 3", "2010_04 132_225 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #35" ),
	new image_info_item ( "2010_04 135_225 1", "2010_04 135_225 1 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #36" ),
	new image_info_item ( "2010_04 137_225 3", "2010_04 137_225 3 work s-rgb", "Abandoned Red Hill Marina, Salton Sea, CA", "Abandoned Red Hill Marina, Salton Sea, CA, #37" ),

	// 2010_04 Boat Launch, east shore
	new image_info_item ( "2010_04 143_225 3", "2010_04 143_225 3 work s-rgb", "Abandoned Boat Launch, East Shore, Salton Sea, CA", "Abandoned Boat Launch, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 145_225 1", "2010_04 145_225 1 work s-rgb", "Abandoned Boat Launch, East Shore, Salton Sea, CA", "Abandoned Boat Launch, Salton Sea, CA, #2" ),
	new image_info_item ( "2010_04 146_225 3", "2010_04 146_225 3 work s-rgb", "Abandoned Boat Launch, East Shore, Salton Sea, CA", "Abandoned Boat Launch, Salton Sea, CA, #3" ),
	new image_info_item ( "2010_04 147_225 1", "2010_04 147_225 1 work s-rgb", "Abandoned Boat Launch, East Shore, Salton Sea, CA", "Abandoned Boat Launch, Salton Sea, CA, #4" ),
	new image_info_item ( "2010_04 150_225 1", "2010_04 150_225 1 work s-rgb", "Abandoned Boat Launch, East Shore, Salton Sea, CA", "Abandoned Boat Launch, Salton Sea, CA, #5" ),
	new image_info_item ( "2010_04 152_225 4", "2010_04 152_225 4 work s-rgb", "Abandoned Boat Launch, East Shore, Salton Sea, CA", "Abandoned Boat Launch, Salton Sea, CA, #6" ),
	new image_info_item ( "2010_04 153_225 1", "2010_04 153_225 1 work s-rgb", "Abandoned Boat Launch, East Shore, Salton Sea, CA", "Abandoned Boat Launch, Salton Sea, CA, #7" ),
	new image_info_item ( "2010_04 156_225 1", "2010_04 156_225 1 work s-rgb", "Abandoned Boat Launch, East Shore, Salton Sea, CA", "Abandoned Boat Launch, Salton Sea, CA, #8" ),

	// 2010_04 Bombay Beach
	new image_info_item ( "2010_04 158_225 3", "2010_04 158_225 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #53" ),
	new image_info_item ( "2010_04 162_225 3", "2010_04 162_225 3 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #54" ),

	// 2010_04 Bombay Beach, structures
	new image_info_item ( "2010_04 165_225 4", "2010_04 165_225 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #55" ),
	new image_info_item ( "2010_04 167_225 4", "2010_04 167_225 4 work s-rgb", "Wrecked Marina, Bombay Beach, Salton Sea, CA", "Wrecked Marina, Bombay Beach, Salton Sea, CA, #56" ),

	// 2010_04 North Shore, abandoned beach shower tower
	new image_info_item ( "2010_04 169_225 3", "2010_04 169_225 3 work s-rgb", "Wrecked Shower with Alien, Salton Sea, CA", "Wrecked Shower with Alien, Salton Sea, CA, #2" ),
	new image_info_item ( "2010_04 171_225 3", "2010_04 171_225 3 work s-rgb", "Wrecked Shower with Alien, Salton Sea, CA", "Wrecked Shower with Alien, Salton Sea, CA, #1" ),
	new image_info_item ( "2010_04 172_225 3", "2010_04 172_225 3 work s-rgb", "Wrecked Shower with Alien, Salton Sea, CA", "Wrecked Shower with Alien, Salton Sea, CA, #3" ),
	new image_info_item ( "2010_04 176_225 3", "2010_04 176_225 3 work s-rgb", "Wrecked Shower with Alien, Salton Sea, CA", "Wrecked Shower with Alien, Salton Sea, CA, #4" ),

	// 2010_04 Wonder Valley Houses, Mojave Desert, CA
	new image_info_item ( "2010_04 177_225 3", "2010_04 177_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #83" ),
	new image_info_item ( "2010_04 179_225 3", "2010_04 179_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #84" ),
	new image_info_item ( "2010_04 180_225 4", "2010_04 180_225 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #85" ),
	new image_info_item ( "2010_04 182_225 3", "2010_04 182_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #86" ),
	new image_info_item ( "2010_04 183_225 1", "2010_04 183_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #87" ),
	new image_info_item ( "2010_04 184_225 3", "2010_04 184_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #88" ),
	new image_info_item ( "2010_04 185_225 3", "2010_04 185_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #89" ),
	new image_info_item ( "2010_04 186_225 3", "2010_04 186_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #90" ),
	new image_info_item ( "2010_04 190_225 1", "2010_04 190_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #91" ),
	new image_info_item ( "2010_04 191_225 3", "2010_04 191_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #92" ),
	new image_info_item ( "2010_04 193_225 3", "2010_04 193_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #93" ),
	new image_info_item ( "2010_04 195_225 1", "2010_04 195_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #94" ),
	new image_info_item ( "2010_04 196_225 3", "2010_04 196_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #95" ),
	new image_info_item ( "2010_04 197_225 3", "2010_04 197_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #96" ),
	new image_info_item ( "2010_04 199_225 1", "2010_04 199_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #97" ),
	new image_info_item ( "2010_04 200_225 3", "2010_04 200_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #98" ),
	new image_info_item ( "2010_04 201_225 1", "2010_04 201_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #99" ),
	new image_info_item ( "2010_04 202_225 4", "2010_04 202_225 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #100" ),
	new image_info_item ( "2010_04 203_225 1", "2010_04 203_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #101" ),
	new image_info_item ( "2010_04 204_225 4", "2010_04 204_225 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #102" ),
	new image_info_item ( "2010_04 205_225 4", "2010_04 205_225 4 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #103" ),
	new image_info_item ( "2010_04 206_225 3", "2010_04 206_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #104" ),
	new image_info_item ( "2010_04 207_225 3", "2010_04 207_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #105" ),
	new image_info_item ( "2010_04 210_225 3", "2010_04 210_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #81" ),
	new image_info_item ( "2010_04 213_225 3", "2010_04 213_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #82" ),
	new image_info_item ( "2010_04 214_225 1", "2010_04 214_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #106" ),
	new image_info_item ( "2010_04 215_225 1", "2010_04 215_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #107" ),
	new image_info_item ( "2010_04 216_225 1", "2010_04 216_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #108" ),
	new image_info_item ( "2010_04 217_225 3", "2010_04 217_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #109" ),
	new image_info_item ( "2010_04 218_225 1", "2010_04 218_225 1 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #110" ),
	new image_info_item ( "2010_04 219_225 3", "2010_04 219_225 3 work s-rgb", "Abandoned House, Wonder Valley, Mojave Desert, CA", "House, Wonder Valley, Mojave Desert, CA, #111" )

	// End 2010_04
];
		
function init_image_info () 
{
	var i;
	// Make hash table for associative lookup.
	for (i = 0; i < image_info.length; i++ ) {
		image_info[image_info[i].image_no] = image_info[i];
	}
	init_image_info_called = 1;
}

function get_image_data (image_number) 
{
	var im_data;
	if (init_image_info_called < 1) {
		init_image_info ();
	}
	im_data = "";
	if (image_info[image_number] === undefined) {
		im_data = "";
	} else {
		im_data = image_info[image_number].image_data;
	}

	// ?? document.write ("C: " + "\"" + image_number + "\" im_data \"" + im_data + "\"");
	return ( im_data );
}

function get_image_info (image_number) 
{
	var im_info;
	if (init_image_info_called < 1) {
		init_image_info ();
	}
	if (image_info[image_number] === undefined) {
		im_info = undefined;
	} else {
		im_info = image_info[image_number];
	}

	// ?? document.write ("C: " + "\"" + image_number + "\" im_data \"" + im_data + "\"");
	return ( im_info );
}

//
// Code and data to build the single "master" scan page index as well as the scan page index found on each of the
// individual scan pages.
//

function linkentry (link, text, desc, newlink, modlink) {
	this.link = link;
	this.text = text;
	this.desc = desc;
	// Set newlink to a meaningful date string to be displayed as the date the scan page entry was added.
	this.newlink = newlink || "";
	// Set modlink to a meaningful date string to be displayed as the date the scan page entry was modified (images added).
	this.modlink = modlink || "";
}


var links = [
	{link:"3_97/index.html", text:"1997 03",
	desc:"Great Sand Dunes NM, CO; Mojave Desert, CA; Death Valley, CA" },
	{link:"2_98/index.html", text:"1998 02",
	desc:"Mojave Desert, CA" },
	{link:"3_98/index.html", text:"1998 03",
	desc:"Death Valley, CA" },
	{link:"5_98/index_pano.html", text:"1998 05",
	desc:"Boulder, CO (Panoramic)", newlink:"2007 11" },
	{link:"8_98/index.html", text:"1998 08",
	desc:"Great Sand Dunes NM, CO" },
	{link:"8_98/index_pano.html", text:"1998 08",
	desc:"Santa Cruz Mountains, CA (Panoramic)", newlink:"2008 02" },
	{link:"11_98/index.html", text:"1998 11",
	desc:"Death Valley, CA" },
	{link:"11_98/index_pano.html", text:"1998 11",
	desc:"Blue Mesa Reservoir, CO; Death Valley, CA (Panoramic)", modlink:"2008 02" },
	{link:"3_99/index.html", text:"1999 03",
	desc:"Death Valley, CA; Mojave Desert, CA; Great Sand Dunes NM, CO" },
	{link:"3_99/index_pano.html", text:"1999 03",
	desc:"Death Valley, CA; Mojave Desert, CA (Panoramic)", newlink:"2007 11" },
	{link:"5_99/index.html", text:"1999 05",
	desc:"Great Sand Dunes NM, CO" },
	{link:"8_99/index.html", text:"1999 08",
	desc:"Black Rock Desert, NV" },
	{link:"9_99/index.html", text:"1999 09",
	desc:"Great Sand Dunes NM, CO" },
	{link:"1_2000/index.html", text:"2000 01",
	desc:"Great Sand Dunes NM, CO; Smoke Creek Desert, NV" },
	{link:"3_2000/index.html", text:"2000 03",
	desc:"Cathedral Gorge SP, NV; Death Valley , CA" },
	{link:"10_2000/index.html", text:"2000 10",
	desc:"Great Sand Dunes NM, CO; Smoke Creek Desert, NV" },
	{link:"10_2000/index_pano.html", text:"2000 10",
	desc:"Black Rock Desert, NV (Panoramic)", modlink:"2008 02" },
	{link:"3_2001/index.html", text:"2001 03",
	desc:"Death Valley, CA; Mono Lake, CA; Cottonwoods, Owens Valley, CA" },
	{link:"5_2001/index.html", text:"2001 05",
	desc:"Paria Wilderness, AZ; Coral Pink Dunes SP, UT; Arizona Strip, AZ, UT" },
	{link:"5_2001/index_pano.html", text:"2001 05",
	desc:"Arizona Strip, AZ, UT (Panoramic)", newlink:"2007 11" },
	{link:"8_2001/index_pano.html", text:"2001 08",
	desc:"San Luis Valley, CO (Panoramic)", newlink:"2007 11" },
	{link:"2_2002/index.html", text:"2002 02",
	desc:"Death Valley, CA; Pyramid Lake, NV; Smoke Creek Desert, NV" },
	{link:"2_2002/index_pano.html", text:"2002 02",
	desc:"Death Valley, CA; Smoke Creek Desert, NV (Panoramic)", modlink:"2008 02" },

	{link:"7_2002/index.html", text:"2002 07",
	desc:" McArthur-Burney Falls Memorial SP, CA; Sand Mountain, NV" },
	{link:"7_2002/index_house.html", text:"2002 07",
	desc:"Stone House, Spring Valley, NV" },
	{link:"7_2002/index_smoke.html", text:"2002 07",
	desc:"Bonham Ranch and Smoke Creek Desert, NV" },
	{link:"7_2002/index_salt.html", text:"2002 07",
	desc:"Bonneville Salt Flats, UT" },

	{link:"7_2002/index_cars.html", text:"2002 07",
	desc:"Shot Up Cars, Dixie Valley, NV" },
	{link:"7_2002/index_roadcut.html", text:"2002 07",
	desc:"US50 Road Cut, Near Ely, NV" },
	{link:"7_2002/index_pano.html", text:"2002 07",
	desc:"Bonneville Salt Flats, UT (Panoramic)", newlink:"2007 11" },
	{link:"8_2002/index.html", text:"2002 08",
	desc:"Red Desert and Reliance, WY; San Luis Valley, CO" },
	{link:"11_2002/index.html", text:"2002 11",
	desc:"Death Valley, CA; Shot Up Cars, Dixie Valley, NV; Kelso Dunes, Mojave Desert, CA" },
	{link:"2_2003/index.html", text:"2003 02",
	desc:"Smoke Creek Desert, NV" },
	{link:"3_2003/index.html", text:"2003 03",
	desc:"Smoke Creek Desert, NV; Osceola, NV" },
	{link:"3_2003/index_pano.html", text:"2003 03",
	desc:"Smoke Creek Desert, NV (Panoramic)", newlink:"2007 11" },
	{link:"5_2003/index.html", text:"2003 05",
	desc:"Bonnie Claire Mine, CA; Kelso Dunes, Mojave Desert, CA" },
	{link:"5_2003/index_pano.html", text:"2003 05",
	desc:"Death Valley, CA (Panoramic)", newlink:"2007 11" },
	{link:"8_2003/index.html", text:"2003 08",
	desc:"Black Rock Desert, NV; Smoke Creek Desert, NV; Abandoned Hot Springs, US93, NV; Hamilton, NV; US50 Road Cut, Near Ely, NV; Shot Up Cars, Dixie Valley, NV; Sunrise, Bruneau Dunes, ID" },
	{link:"2_2004/index.html", text:"2004 02",
	desc:"Cerro Gordo, CA; Candelaria, NV" },
	{link:"2_2004/index_pano.html", text:"2004 02",
	desc:"Mono Lake, CA; Alabama Hills, CA (Panoramic)", modlink:"2008 02" },
	{link:"6_2004/index_pano.html", text:"2004 06",
	desc:"Monument Valley, AZ (Panoramic)", newlink:"2007 11" },
	{link:"2004_06/index.html", text:"2004 06",
	desc:"Florida Keys, FL (Panoramic)", newlink:"2008 10" },
	{link:"8_2004/index_cars.html", text:"2004 08",
	desc:"Shot Up Cars, Dixie Valley, NV" },
	{link:"8_2004/index_b24.html", text:"2004 08",
	desc:"B-24 Hangar, Tonopah, NV" },
	{link:"8_2004/index_belmont.html", text:"2004 08",
	desc:"Belmont Courthouse, Belmont, NV" },
	{link:"8_2004/index_pano.html", text:"2004 08",
	desc:"Picnic Table, Clouds, NV (Panoramic)", newlink:"2007 11" },
	{link:"", text:"", desc:"" },

	{link:"9_2004/index.html", text:"2004 09",
	desc:"Belle Isle Power Plant, Richmond VA", newlink:"2008 10" },
	{link:"", text:"", desc:"" },

	{link:"11_2004/11 2004 New Zealand Panoramic Index.html", text:"2004 11",
	desc:"New Zealand (Panoramic)", newlink:"2007 11" },
	{link:"", text:"", desc:"" },

	{link:"2_2005/index.html", text:"2005 02",
	desc:"Smoke Creek Desert, NV; Hot Springs Flat, NV" },
	{link:"2_2005/index_pano.html", text:"2005 02",
	desc:"Smoke Creek Desert, NV (Panoramic)", modlink:"2008 12" },
	{link:"", text:"", desc:"" },

	{link:"5_2005/Belmont Courthouse index.html", text:"2005 05",
	desc:"Belmont Courthouse, Belmont, NV" },
	{link:"5_2005/B-24 Hangar index.html", text:"2005 05",
	desc:"B-24 Hangar, Tonopah, NV" },
	{link:"5_2005/Abandoned Gas Station index.html", text:"2005 05",
	desc:"Abandoned Gas Station, US93, NV" },
	{link:"5_2005/Abandoned Grain Elevator index.html", text:"2005 05",
	desc:"Abandoned Feed Mill, Luning, NV" },
	{link:"5_2005/Tempiute Tungsten Mine Rachel index.html", text:"2005 05",
	desc:"Tempiute Tungsten Mine, Rachel, NV" },
	{link:"5_2005/Mine Shacks Goldfield index.html", text:"2005 05",
	desc:"Mine Shacks, Goldfield, NV" },
	{link:"5_2005/Misc index.html", text:"2005 05",
	desc:"Various, Nevada" },
	{link:"", text:"", desc:"" },

	{link:"5_2005 UT/Vermilion Cliffs Pano.html", text:"2005 05",
	desc:"Vermilion Cliffs, UT (Panoramic)", newlink:"2007 11" },
	{link:"5_2005 UT/Coral Pink Sand Dunes SP, UT index.html", text:"2005 05",
	desc:"Coral Pink Sand Dunes SP, UT" },
	{link:"5_2005 UT/Sevier Lake, UT index.html", text:"2005 05",
	desc:"Sevier Lake, UT", newlink:"2007 11" },
	{link:"5_2005 UT/Abandoned Mill, Paintball, Delta UT index.html", text:"2005 05",
	desc:"Abandoned Mill, Paintball, Delta UT" },
	{link:"5_2005 UT/Sulphurdale, UT index.html", text:"2005 05",
	desc:"Sulphurdale, UT" },
	{link:"5_2005 UT/Shot Up Cars, UT index.html", text:"2005 05",
	desc:"Shot Up Cars, UT" },
	{link:"", text:"", desc:"" },

	{link:"7_2005/7_2005 Connors Pass NV Roadcut Index.html", text:"2005 07",
	desc:"Connors Pass NV Roadcut" },
	{link:"7_2005/7_2005 Ward, Nevada Index.html", text:"2005 07",
	desc:"Ward NV" },
	{link:"7_2005/7_2005 Warm Springs, NV Index.html", text:"2005 07",
	desc:"Warms Springs NV, Cars (Abstract)" },
	{link:"7_2005/7_2005 Abandoned Feed Mill, Luning, NV Index.html", text:"2005 07",
	desc:"Abandoned Feed Mill, Luning, NV" },
	{link:"7_2005/7_2005 Stone House, Spring Valley NV Index.html", text:"2005 07",
	desc:"Stone House, Spring Valley, NV" },
	{link:"7_2005/7_2005 Coaldale NV Index.html", text:"2005 07",
	desc:"Coaldale, NV" },
	{link:"7_2005/7_2005 Lunar Lake Pano.html", text:"2005 07",
	desc:"Lunar Lake, NV (Panoramic)", newlink:"2007 11" },
	{link:"", text:"", desc:"" },

	{link:"9_2005/9_2005 Power Plant, Alamosa, CO.html", text:"2005 09",
	desc:"Public Service Power Plant, Alamosa CO" },
	{link:"9_2005/9_2005 Rail Yard, Antonito, CO.html", text:"2005 09",
	desc:"Rail Yard, Antonito, CO", newlink:"2007 11" },
	{link:"", text:"", desc:"" },

	{link:"2_2006/Abandoned House, Thermal CA 2_2006.html", text:"2006 02",
	desc:"Abandoned House, Thermal, CA" },
	{link:"2_2006/Abandoned Motel and Casino, North Shore, Salton Sea, CA 2_2006.html", text:"2006 02",
	desc:"Abandoned Motel and Casino, North Shore, Salton Sea, CA", newlink:"2007 11" },
	{link:"2_2006/Abandoned Bar, Salton Sea Beach CA 2_2006.html", text:"2006 02",
	desc:"Abandoned Bar, Salton Sea Beach, CA" },
	{link:"2_2006/Salton Sea Beach CA 2_2006.html", text:"2006 02",
	desc:"Salton Sea Beach, CA" },
	{link:"2_2006/Bombay Beach, Salton Sea, CA 2_2006.html", text:"2006 02",
	desc:"Bombay Beach, Salton Sea, CA", newlink:"2007 11" },
	{link:"2_2006/Carerra, CA, North Shore, Salton Sea, CA 2_2006.html", text:"2006 02",
	desc:"Carerra, CA, North Shore, Salton Sea, CA", newlink:"2007 11" },
	{link:"2_2006/Abandoned Packing Plant, Niland CA 2_2006.html", text:"2006 02",
	desc:"Abandoned Packing Plant, Niland, CA" },
	{link:"2_2006/Tungsten Mine, Atolia CA 2_2006.html", text:"2006 02",
	desc:"Tungsten Mine, Atolia, CA" },
	{link:"2_2006/2 2006 Salton Sea CA Panoramic Index.html", text:"2006 02",
	desc:"Salton Sea, CA (Panoramic)", newlink:"2007 11" },
	{link:"", text:"", desc:"" },

	{link:"2006_05/5_2006 Flanigan NV Dump, Gerlach NV UP Station.html", text:"2006 05",
	desc:"Flanigan NV Dump, Gerlach NV UP Station" },
	{link:"2006_05/5_2006 US Gypsum Plant, Bartlett CA.html", text:"2006 05",
	desc:"US Gypsum Plant, Barlett, CA" },
	{link:"2006_05/5_2006 Keeler, CA.html", text:"2006 05",
	desc:"Keeler, CA" },
	{link:"2006_05/5_2006 Owens Valley CA Diner, Owens Valley CA Diner, Bar, Motel.html", text:"2006 05",
	desc:"Owens Valley CA Diner, Owens Valley CA Diner, Bar, Motel" },
	{link:"2006_05/5_2006 Clouds, Lone Pine, CA.html", text:"2006 05",
	desc:"Clouds, Lone Pine, CA" },
	{link:"", text:"", desc:"" },

	{link:"8_2006/Old Ruth Pit, Ruth, Nevada.html", text:"2006 08",
	desc:"Old Ruth Pit, Ruth, Nevada" },
	{link:"8_2006/Lockes, Nevada.html", text:"2006 08",
	desc:"Lockes, Nevada" },
	{link:"8_2006/Pioche, Ward, Ely, Troy, Nevada.html", text:"2006 08",
	desc:"Pioche, Ward, Ely, Troy, Nevada" },
	{link:"2006_08/2006_08 Ely, Ruth, NV.html", text:"2006 08",
	desc:"Pioche, Nevada Area (Panoramic)" },
	{link:"", text:"", desc:"" },

	{link:"2006_10/2006_10 Mountains, Virginia.html", text:"2006 10",
	desc:"Mountains, Virginia (Panoramic)", newlink:"2007 11" },
	{link:"", text:"", desc:"" },

	{link:"2007_03/3_2007 Ward, Nevada Index.html", text:"2007 03",
	desc:"Ward, Nevada", newlink:"2007 11" },
	{link:"2007_03/3_2007 Taylor Site, Nevada Index.html", text:"2007 03",
	desc:"Taylor Site, Nevada", newlink:"2007 11" },
	{link:"2007_03/3_2007 Caseldon, Nevada Index.html", text:"2007 03",
	desc:"Caseldon, Nevada", newlink:"2007 11" },
	{link:"2007_03/3_2007 Caseldon, Mill, Nevada Index.html", text:"2007 03",
	desc:"Caseldon, Mill, Nevada", newlink:"2007 11" },
	{link:"2007_03/3_2007 Ely Valley Mill, Pioche, Nevada Index.html", text:"2007 03",
	desc:"Ely Valley Mill, Pioche, Nevada", newlink:"2007 11" },
	{link:"2007_03/3_2007 Ely Valley Mine, Pioche, Nevada Index.html", text:"2007 03",
	desc:"Ely Valley Mine, Pioche, Nevada", newlink:"2007 11" },
	{link:"2007_03/3_2007 Princeton Mine, Pioche, Nevada Index.html", text:"2007 03",
	desc:"Princeton Mine, Pioche, Nevada", newlink:"2007 11" },
	{link:"2007_03/3_2007 Pioche, Nevada Area.html", text:"2007 03",
	desc:"Pioche, Nevada Area (Panoramic)", newlink:"2007 11" },
	{link:"", text:"", desc:"" },

	{link:"2007_05/5_2007 Reliance Wyoming.html", text:"2007 05",
	desc:"Reliance Wyoming", newlink:"2008 10" },
	{link:"2007_05/5_2007 Wyoming Sky.html", text:"2007 05",
	desc:"Wyoming Sky, Near Rawlins WY (Panoramic)", newlink:"2008 10" },
	{link:"2007_05/5_2007 Wyoming Frontier Prison, Rawlins WY Index.html", text:"2007 05",
	desc:"Wyoming Frontier Prison, Rawlins WY", newlink:"2007 11" },
	{link:"", text:" ", desc:"" },

	{link:"2007_08/index.html", text:"2007 08",
	desc:"Wendover UT", newlink:"2007 11", modlink:"2008 02" },
	{link:"2007_08/8 2007 Great Salt Desert UT Index.html", text:"2007 08",
	desc:"Great Salt Desert UT (Panoramic)", modlink:"2008 02" },

	{link:"", text:" ", desc:"" },
	{link:"2007_12/index.html", text:"2007 12",
	desc:"Western States Hospital, Staunton VA", newlink:"2008 02" },
	{link:"2007_12 A/index.html", text:"2007 12",
	desc:"Western States Hospital, Staunton VA", newlink:"2008 10" },

	{link:"", text:" ", desc:"" },
	{link:"2008_01/index.html", text:"2008 01",
	desc:"Snow, Smoke Creek Desert, NV (Panoramic)", newlink:"2008 01" },

	{link:"", text:" ", desc:"" },
	{link:"2008_02/Bombay Beach, Salton Sea, CA 2008_02.html", text:"2008 02",
		desc:"Bombay Beach, Salton Sea, CA (Panoramic)", newlink:"2008 06" },
	{link:"2008_02/Bombay Beach, Structures, Salton Sea, CA 2008_02.html", text:"2008 02",
		desc:"Bombay Beach, Structures, Salton Sea, CA (Panoramic)", newlink:"2008 06" },
	{link:"2008_02/Abandoned Motel and Casino, North Shore, Salton Sea, CA 2008_02.html", text:"2008 02",
		desc:"Abandoned Motel and Casino, North Shore, Salton Sea, CA (Panoramic)", newlink:"2008 06" },
	{link:"2008_02/Shower, North Shorh, Salton Sea, CA.html", text:"2008 02",
		desc:"Shower, North Shorh, Salton Sea, CA (Panoramic)", newlink:"2008 06" },
	{link:"2008_02/Houses, East Shore, Salton Sea, CA 2008_02.html", text:"2008 02",
		desc:"Houses, East Shore, Shore, Salton Sea, CA (Panoramic)", newlink:"2008 06" },
	{link:"2008_02/Salton Sea Beach, CA 2008_02.html", text:"2008 02",
		desc:"Salton Sea Beach, CA (Panoramic)", newlink:"2008 06" },
	{link:"2008_02/Amboy, CA 2008_02.html", text:"2008 02",
		desc:"Amboy, CA (Panoramic)", newlink:"2008 06" },

	{link:"", text:" ", desc:"" },
	{link:"2008_06/index.html", text:"2008 06",
	desc:"Black Rock Desert, NV (Panoramic)", newlink:"2008 06" },

	{link:"", text:" ", desc:"" },
	{link:"2008_10/McGill_Clubhouse.html", text:"2008 10", desc:"McGill Clubhouse, McGill, NV", newlink:"2009 01" },
	{link:"2008_10/Eureka_NV_Mine.html", text:"2008 10", desc:"Eureka, NV", newlink:"2009 01" },
	{link:"2008_10/Ward_Nevada.html", text:"2008 10", desc:"Ward, Nevada", newlink:"2009 01" },
	{link:"2008_10/Ely_Nevada.html", text:"2008 10", desc:"Railway, Ely, Nevada", newlink:"2009 01" },
	{link:"2008_10/Salt_Wells_Nevada.html", text:"2008 10", desc:"Salt Wells, NV (Panoramic)", newlink:"2009 01" },
	{link:"2008_10/Moonrise_US50_Nevada.html", text:"2008 10", desc:"Moonrise, US50, NV (Panoramic)", newlink:"2009 01" },

	{link:"", text:" ", desc:"" },
	{link:"2009_03/Wonder_Valley_Houses.html", text:"2009 03", desc:"Houses, Wonder Valley, CA (Panoramic)", newlink:"2009 06" },
	{link:"2009_03/Cedarvale_School.html", text:"2009 03", desc:"School, Cedarvale, NM", newlink:"2009 06" },
	{link:"2009_03/Amboy.html", text:"2009 03", desc:"Chloride Pit, Amboy, CA", newlink:"2009 06" },
	{link:"2009_03/Keeler.html", text:"2009 03", desc:"Pool, Keeler, CA", newlink:"2009 06" },
	{link:"2009_03/Owens_Lake.html", text:"2009 03", desc:"Owens Lake, CA (Panoramic)", newlink:"2009 06" },
	{link:"2009_03/Salton_Sea_Beach.html", text:"2009 03", desc:"Salton Sea Beach, CA", newlink:"2009 06" },
	{link:"2009_03/Salton_Sea.html", text:"2009 03", desc:"Salton Sea, CA (Panoramic)", newlink:"2009 06" },
	{link:"2009_03/Trona_Pinnacles.html", text:"2009 03", desc:"Trona Pinnacles, CA (Panoramic)", newlink:"2009 06" },

	{link:"", text:" ", desc:"" },
	{link:"2009_07/Penitentiary_New_Mexico.html", text:"2009 07", desc:"Penitentiary, Santa Fe, NM", newlink:"2009 09" },
	{link:"2009_07/SantaFe_Railyard.html", text:"2009 07", desc:"Rail Yard, Albuquerque, NM", newlink:"2009 09" },
	{link:"2009_07/SantaFe_Railyard_p.html", text:"2009 07", desc:"Rail Yard, Albuquerque, NM (Panoramic)", newlink:"2009 09" },

	{link:"", text:" ", desc:"" },
	{link:"2009_11/BombayBeach.html", text:"2009 11", desc:"Wrecked Marina, Bombay Beach, Salton Sea, CA", newlink:"2010 01" },
	{link:"2009_11/RedHillMarina.html", text:"2009 11", desc:"Wrecked Red Hill Marina, Salton Sea, CA", newlink:"2010 01" },
	{link:"2009_11/AbandonedSpa.html", text:"2009 11", desc:"Abandoned and Wrecked Spa, Salton Sea, CA", newlink:"2010 01" },
	{link:"2009_11/Sunsets.html", text:"2009 11", desc:"Sunsets, CA, AZ", newlink:"2010 01" },
	{link:"2009_11/WonderValleyHouses.html", text:"2009 11", desc:"Houses, Wonder Valley, CA (Panoramic)", newlink:"2010 01" },
	{link:"2009_11/WhiteSandsNM.html", text:"2009 11", desc:"Gypsum Dunes, White Sands, NM (Panoramic)", newlink:"2010 01" },

	{link:"", text:" ", desc:"" },
	{link:"2010_04/BombayBeach.html", text:"2010 04", desc:"Wrecked Marina, Bombay Beach, Salton Sea, CA", newlink:"2010 05" },
	{link:"2010_04/RedHillMarina.html", text:"2010 04", desc:"Wrecked Red Hill Marina, Salton Sea, CA", newlink:"2010 05" },
	{link:"2010_04/RedHillMarinaTufaField.html", text:"2010 04", desc:"Red Hill Marina Tufa Field, Salton Sea, CA", newlink:"2010 05" },
	{link:"2010_04/EastShoreBoatLaunch.html", text:"2010 04", desc:"Wrecked Boat Launch, East Shore, Salton Sea, CA", newlink:"2010 05" },
	{link:"2010_04/SaltonSeaBeachPalms.html", text:"2010 04", desc:"Salton Sea Beach Palms, Salton Sea, CA", newlink:"2010 05" },
	{link:"2010_04/SaltonCity.html", text:"2010 04", desc:"Salton City, Salton Sea, CA", newlink:"2010 05" },
	{link:"2010_04/AbandonedSpa.html", text:"2010 04", desc:"Abandoned and Wrecked Spa, Salton Sea, CA", newlink:"2010 05" },
	{link:"2010_04/Site, Abandoned Motel and Casino, North Shore, Salton Sea, CA.html", text:"2010 04",
		desc:"Site, Abandoned Motel and Casino, North Shore, Salton Sea, CA (Panoramic)", newlink:"2010 05" },
	{link:"2010_04/Shower, North Shorh, Salton Sea, CA.html", text:"2010 04",
		desc:"Shower, North Shorh, Salton Sea, CA (Panoramic)", newlink:"2010 05" },
	{link:"2010_04/WonderValleyHouses.html", text:"2010 04", desc:"Houses, Wonder Valley, CA (Panoramic)", newlink:"2010 05" },
	{link:"", text:" ", desc:"" }
];

//
// Generate links for "prev" and next" in pages like the exhibits and panoramic pages..
//
function gallery_prev_next (lprev, lnext)
{
	document.write ("<table border=\"0\" align=\"center\">");
	document.write ("<tr>");
	document.write ("<td>");
	document.write ("<table width=\"84\" border=\"0\" align=\"center\">");
	if (!lprev || lprev == "") {
		// document.write ("<td>  <p class=scan_index_item_center>Previous</p> </td>");
		document.write ("<td align=\"center\"> <h3>Previous</h3> </td>");
	} else {
		// document.write ("<td> <a href=\"" + lprev + "\" class=\"scan_index_item_center\"> <p class=scan_index_item_center>Previous</p></a> </td>");
		document.write ("<td align=\"center\"> <h3> <a href=\"" + lprev + "\">Previous</a> </h3> </td>");
	}
	document.write ("</table>");
	document.write ("</td>");

	document.write ("<td>");
	document.write ("<table width=\"84\" border=\"0\" align=\"center\">");
	if (!lnext || lnext == "") {
		// document.write ("<td>  <p class=scan_index_item_center>Next</p> </td>");
		document.write ("<td align=\"center\"> <h3>Next</h3> </td>");
	} else {
		// document.write ("<td> <a href=\"" + lnext + "\"  class=\"scan_index_item_center\"> <p class=scan_index_item_center>Next</p></a> </td>");
		document.write ("<td align=\"center\"> <h3> <a href=\"" + lnext + "\">Next</a> </h3> </td>");
	}
	document.write ("</table>");
	document.write ("</td>");
	document.write ("</tr>");
	document.write ("</table>");
}

function findme (here)
{
	var i;
	var ls = String(here);
	var words = ls.split("/");
	var myloc = (words.length > 1) ? (words[words.length-2] + "/" + words[words.length-1]) : "";
	// Now loop through array of links and return "this" link.
	for (i = 0; i < links.length; i++) {
		if (links[i].link != "" && links[i].link == myloc)
			return (i);
	}
	return (-1);
}

function findprev (here)
{
	var i;
	var me = findme (here);
	if (me <= 0) {
		return ("");
	} else if (me > 0) {
		// Need to skip "blanks" in list.
		for (i = me-1; i >= 0; i--)
			if (links[i].link != "") 
				return (links[i].link);
		return ("");
	}
	return ("");
}

function findnext (here)
{
	var i;
	var me = findme (here);
	var last = links.length-1; // Index of last entry in links array.
	if (me >= last) {
		return ("");
	} else if (me < last) {
		// Need to skip "blanks" in list.
		for (i = me+1; i <= last; i++) {
			if (links[i].link != "")  {
				return (links[i].link);
			}
		}
		return ("");
	}
	return ("");
}

function find_previous ()
{
	//
	// Get name of the currect file from self.location, get everything to the right of the second '/' from the right..
	// Example: from /foo1/foo2/foo3/gork/index.html we want gork/index.html
	// Use this to search the table of index file names to find "self" then +/-1 for prev and next items.
	//
	var xhere = new String(self.location);
	// Browser could return %20 in place of blank .. get rid of them so the comparisons work.  The links table does not have %20.
	var here = xhere.replace (/\%20/g, " ");
	return findprev (here);
}

function find_next ()
{
	//
	// Get name of the currect file from self.location, get everything to the right of the second '/' from the right..
	// Example: from /foo1/foo2/foo3/gork/index.html we want gork/index.html
	// Use this to search the table of index file names to find "self" then +/-1 for prev and next items.
	//
	var xhere = new String(self.location);
	// Browser could return   in place of blank .. get rid of them so the comparisons work.
	var here = xhere.replace (/\%20/g, " ");
	return findnext (here);
}

// Helper function for scan_index_nav()
function write_scan_index_nav_entry (i)
{
	// document.write ("Link " + i);
	var l;
	document.write ("<tr>");
	if (links[i].link === "" && links[i].text === "") {
		l = "<td>&nbsp;</td>";
	} else if (links[i].link === "") {
		l = "<td class=\"scan_index_item_center\">" + links[i].text + "</td>";
	} else {
		// Generate call to overlib() function to make "tool tip" style popup.
		l = "<td> <a href=" + "\"../" + links[i].link + "\"" +
		    " onMouseOver=\"return overlib('" + links[i].desc + "');\"" +
		    " onMouseOut=\"return nd();\"" +
		    " class=\"scan_index_item_center\">" + links[i].text + "</a> </td>";
	}
	document.write (l);
	document.write ("</tr>");
}
// Build navigation table for each index page.
function scan_index_nav ()
{
	var i;
	var table_start = "<table width=\"64\" border=\"0\" align=\"center\">";
	var table_end = "</table>";

	// document.write ("Links.length " + links.length);
	document.write (table_start);

	// Assumes that the most recent entries are at the BOTTOM of the links table.
	if (write_index_most_recent_first) {
		for (i = links.length-1; i >= 0; i--) {
			write_scan_index_nav_entry (i);
		}
	} else {
		for (i = 0; i < links.length; i++) {
			write_scan_index_nav_entry (i);
		}
	}

	document.write (table_end);
}


// Sample table entry for full index to scan pages
  // <tr>
    // <td><a href="../Web/lsfoto/Scans/3_97/index.html" class="scan_index_item">1997 03 </a></td>
    // <td class="scan_index_item">Great Sand Dunes NM, CO; Mojave Desert, CA; Death Valley, CA</td>
  // </tr>

// Helper function for scan_index_nav()
function write_scan_index_nav_full_entry (i)
{
	// document.write ("Link " + i);
	var l;

	document.write ("<tr>");
	if (links[i].link === "" && links[i].text === "") {
		l = "<td>&nbsp;</td>";
	} else if (links[i].link === "") {
		l = "<td class=\"scan_index_item_center\">" + links[i].text + "</td>";
	} else {
		l = "<td width=\"64\"> <a href=" + "\"./" + links[i].link + "\" class=\"scan_index_item_center\">" + links[i].text + "</a> </td>";
	}
	document.write (l);

	// The modified date has priority in case they are both specified.
	// ??
	// This only works because the '?' operator can correctly compare a string to 'undefined' in a linkentry.
	// The constructor function intent is to default modlink and newlink to "", but that isn't working.
	// When it does work comparisons of modlink and newlink to "" can be made.
	// ??
	var modstr = (links[i].modlink) ? "(Updated " + links[i].modlink + ")" : "";
	var newstr = (links[i].newlink) ? "(New " + links[i].newlink + ")" : "";
	var new_or_mod = (modstr != "") ? modstr : ((newstr != "") ? newstr : "");
/**** ??
	if (i < 8) {
		alert (
			"mod: \"" + links[i].modlink + 
			"\" new: \"" + links[i].newlink + 
			"\" modstr: \"" + modstr + 
			"\" newstr: \"" + newstr + 
			"\" new_or_mod: \"" + new_or_mod + "\"");
	}
****/

	l = "<td "+
		((new_or_mod !== "") ? " class=\"scan_index_item_new\"" : " class=\"scan_index_item\"") + 
		">" + 
		(links[i].desc + " " + new_or_mod)  +
		"</td>";
	document.write (l);

	document.write ("</tr>");
}

// Build navigation table for the "front page" to the chronological scan index.
function scan_index_nav_full ()
{
	var i;
	var table_start = "<table width=\"636\" border=\"0\" align=\"center\">";
	var table_end = "</table>";

	// document.write ("Links.length " + links.length);
	document.write (table_start);

	// Assumes that the most recent entries are at the BOTTOM of the links table.
	if (write_index_most_recent_first) {
		for (i = links.length-1; i >= 0; i--) {
			write_scan_index_nav_full_entry (i);
		}
	} else {
		for (i = 0; i < links.length; i++) {
			write_scan_index_nav_full_entry (i);
		}
	}

	document.write (table_end);
}

//
// Write a line of navigation information across the top of one of the scan index pages.
//
function scan_page_header_nav ()
{
	document.write ("<table border=\"0\" align=\"center\">");
	document.write ("<tr>");

	// "Previous" link.
	document.write ("<td>");
	document.write ("<table width=\"84\" border=\"0\" align=\"center\">");
	var l;
	var prev = find_previous ();
	if (prev == "") {
		document.write ("<td> <p class=\"scan_index_item_center\">Previous</p> </td>");
	} else {
		l = "<td> <a href=" + "\"../" + prev + "\"" + " class=\"scan_index_item_center\">" + 
			"<p class=scan_index_item_center>Previous</p>" + "</a> </td>";
		document.write (l);
	}
	document.write ("</table>");
	document.write ("</td>");

	// "Next" link.
	document.write ("<td>");
	document.write ("<table width=\"84\" border=\"0\" align=\"center\">");
	var next = find_next ();
	if (next == "") {
		document.write ("<td> <p class=\"scan_index_item_center\">Next</p> </td>");
	} else {
		l = "<td> <a href=" + "\"../" + next + "\"" + " class=\"scan_index_item_center\">" + 
			"<p class=scan_index_item_center>Next</p>" + "</a> </td>";
		document.write (l);
	}
	document.write ("</table>");
	document.write ("</td>");

	// "Images" link.
	document.write ("<td>");
	document.write ("<table width=\"84\" border=\"0\" align=\"center\">");
	l = "<td> <a href=" + "\"../../" + "Images Index.htm" + "\"" + " class=\"scan_index_item_center\">" + 
		"<p class=scan_index_item_center>Images</p>" + "</a> </td>";
	document.write (l);
	document.write ("</table>");
	document.write ("</td>");

	// "Home" link.
	document.write ("<td>");
	document.write ("<table width=\"84\" border=\"0\" align=\"center\">");
	l = "<td> <a href=" + "\"../../" + "index.html" + "\"" + " class=\"scan_index_item_center\">" + 
		"<p class=scan_index_item_center>Home</p>" + "</a> </td>";
	document.write (l);
	document.write ("</table>");
	document.write ("</td>");

	document.write ("</tr>");
	document.write ("</table>");
}


// Sample file table entry contents
// <table width="256" border="0">
  // <tr>
    // <td><p><a href="javascript:;" onClick="MM_openBrWindow('../Web/lsfoto/Scans/2007_08/jpg/2007_08 100_129 3 work s-rgb 1024.jpg','','resizable=yes,width=1040,height=356')"><img src="../Web/lsfoto/Scans/2007_08/jpg/2007_08 100_129 3 work s-rgb 256.jpg" width="256" height="84" border="0"></a></p>
    // <p class="phototag">2007_08 100_129 3</p></td>
  // </tr>
// </table>


function imagedata (fn, ftag, title) {
	this.fn = fn;
	this.ftag = ftag;
	this.title = title ? title : "";
}

//
// Image table entry with drop shadow using ydsf.css 
//
// <table class="image"> <tr> <td>
// <div class="ydsf left">
// <div class="inner">
// <a href="javascript:;" onClick="MM_openBrWindow('../Scans/2007_05/jpg/5_2007 2_138 10 shift v2 work s-rgb 800.jpg','','resizable=yes,width=816,height=648')"><img src="../Scans/2007_05/jpg/5_2007 2_138 10 shift v2 work s-rgb 256.jpg" width="256" height="197" border="0">
// </a>
// </div>
// </div>
// <caption class="phototag" align="bottom">5_2007 2_138 10</caption>
// </tr> </td> </table>
function make_image_table_entry_ds (twidth, theight, iwidth, iheight, iwinw, iwinh, iname, ifilename, pref)
{
	var l;
	var info;
	var thumb_fn;
	var large_fn;

	// If thumbnail file with specified twidth exists use that thumbnail image, else use the 256 wide thumbnail image and
	// let the browser resize it.
	thumb_fn = pref + ifilename + " " + twidth + ".jpg";
	// For now FORCE the use of the 256 wide thumbnail image.
	thumb_fn = pref + ifilename + " " + 256 + ".jpg";

	var image_suff = image_info[iname].image_suff;

	if (image_suff != "") {
		large_fn = pref + ifilename + " " + image_suff + ".jpg";
	} else {
		large_fn = pref + ifilename + " " + iwidth + ".jpg";
	}

	document.write ("<table class=\"image\"> <tr> <td>");
	document.write ("<div class=\"ydsf left\">");
	document.write ("<div class=\"inner\">");

	document.write ("<a href=\"javascript:;\" onClick=\"MM_openBrWindow('" + large_fn + "','','resizable=yes,width=" + iwinw + ",height=" + iwinh + "')\"><img src=\"" + thumb_fn + "\" width=\"" + twidth + "\" height=\"" + theight + "\" align=\"top\" border=\"0\"></a>");
	document.write ("</div>");
	document.write ("</div>");
	info = get_image_info (iname);
	// alert (iname + ": \"" + info.image_data + " \"");
	if (info === undefined || info.image_data === undefined || info.image_data === "") {
		l = "<caption class=\"phototag\" align=\"bottom\">" + iname + "</caption>";
	} else {
		var ol_args;
		// alert (iname + " " + ifilename + " \"" + ititle + "\"");
		if (info.image_title === undefined || info.image_title === "") {
			ol_args = "'" + info.image_data + "'";
		} else {
			ol_titlestr = "Title: " + info.image_title;
			ol_args = "'" + info.image_data + "'" + ", CAPTION, " + "'" + ol_titlestr + "'";
			// alert ("args: \"" + ol_args + "\"");
		}
		l = "<caption" + 
		    " onMouseOver=\"return overlib(" + ol_args + ");\"" +
		    " onMouseOut=\"return nd();\"" +
                    " class=\"phototag\" align=\"bottom\">" + iname + "</caption>";
	}
	document.write (l);
	// Put some space under the caption.
	document.write ("<p style=\"height: 0px; margin-top: 0px; margin-bottom: 16px;\"></p>");
	document.write ("</td> </tr> </table>");
}


//
// Function to generate table entry for image
// twidth - thumbnail file width, also used to gnerate thumbnail file names
// theight - thumbnail file height
// iwidth - full size file width, also used to generate names of full size image files
// iheight - full size file height
// iwinw - full size image window width
// iwinh - full size image window height
// iname - image name
// ifilename - image file name
// pref - prepended to image file names
//
function make_image_table_entry (twidth, theight, iwidth, iheight, iwinw, iwinh, iname, ifilename, pref)
{
	var l;
	var info;
	var thumb_fn;
	var large_fn;

	// If thumbnail file with specified twidth exists use that thumbnail image, else use the 256 wide thumbnail image and
	// let the browser resize it.
	thumb_fn = pref + ifilename + " " + twidth + ".jpg";
	// For now FORCE the use of the 256 wide thumbnail image.
	thumb_fn = pref + ifilename + " " + 256 + ".jpg";

	large_fn = pref + ifilename + " " + iwidth + ".jpg";

	document.write ("<table width=\"" + twidth + "\" border=\"0\">");
	document.write ("<tr>");
	document.write ("<td>");
	document.write ("<p><a href=\"javascript:;\" onClick=\"MM_openBrWindow('" + large_fn + "','','resizable=yes,width=" + iwinw + ",height=" + iwinh + "')\"><img src=\"" + thumb_fn + "\" width=\"" + twidth + "\" height=\"" + theight + "\" border=\"0\"></a></p>");
	info = get_image_info (iname);
	// document.write ("make entry: " + iname + " " + info);
	if (info == "") {
		l = "<p class=\"phototag\">" + iname + "</p>";
	} else {
		l = "<p" + 
		    " onMouseOver=\"return overlib('" + info + "');\"" +
		    " onMouseOut=\"return nd();\"" +
                    " class=\"phototag\">" + iname + "</p>";
	}
	document.write (l);
	document.write ("</td>");
	document.write ("</tr>");
	document.write ("</table>");
}


//
// Function to generate table of images.
// ncol - number of columns in table
// imagelist - array of image file information
function make_image_table (ncol, nrow, twidth, theight, iwidth, iheight, iwinw, iwinh, imagelist, pref)
{
	var i;
	var done;
	var col;
	// Start entire table.
	// If we are doing this with drop shadows we can't have a table width.
	if (draw_drop_shadows) {
		document.write ("<table border=\"0\" align=\"center\">");
	} else {
		document.write ("<table width=\"200\" border=\"0\" align=\"center\">");
	}
	
	// alert ("make_image_table: " + imagelist.length);
	for (done = 0, i = 0; done == 0 && i < imagelist.length;) {
		// Start table row.
		document.write ("<tr>");
		for (col = 0; col < ncol; col++) {
			//
			// Override passed in thumb and image dimensions if they are specified for this image.
			//
			var tw = image_info[imagelist[i].ftag].image_tw;
			var th = image_info[imagelist[i].ftag].image_th;
			var iw = image_info[imagelist[i].ftag].image_iw;
			var ih = image_info[imagelist[i].ftag].image_ih;
			if (tw != -1) {
				twidth = tw;
				// Scale thumb width by default number of cols (2) vs actual number of cols.
				twidth = twidth * 2 / ncol;
			}
			if (th != -1) {
				theight = th;
				// Scale thumb width by default number of cols vs actual number of cols.
				theight = theight * 2 / ncol;
			}
			if (iw != -1) {
				iwidth = iw;
				// Also override window width..
				iwinw = iwidth + 2 * gallery_info_window_lr_margin ();
			}
			if (ih != -1) {
				iheight = ih;
				// Also override window height..
				iwinh = iheight + 2 * gallery_info_window_tb_margin ();
			}
			document.write ("<td>");
			if (draw_drop_shadows) {
				make_image_table_entry_ds (twidth, theight, iwidth, iheight, iwinw, iwinh, 
					imagelist[i].ftag, imagelist[i].fn, pref);
			} else {
				make_image_table_entry (twidth, theight, iwidth, iheight, iwinw, iwinh, 
					imagelist[i].ftag, imagelist[i].fn, pref);
			}
			document.write ("<td>");
			if (++i >= imagelist.length) {
				done = 1;
				break;
			}
		}
		document.write ("</tr>");
		// End table row.
	}
	// End entire table.
	document.write ("</table>");
}

// Get inage file names for each tag in image_list, fill in file name.
// This makes it possible to have image file names in only one place, in image_info[];
// If the fn field in the incoming imagelist array is not blank, prepend that to the file name found in image_info.
// This allows relative path names to be specified, and at the same time the actual name of the image file exists in only 
// one place, the image_info array.
function get_file_names (imagelist)
{
	var i;
	if (init_image_info_called < 1) {
		init_image_info ();
	}
	for (i = 0; i < imagelist.length; i++) {
		// alert (i + " \"" + imagelist[i].ftag + "\"");
		var fn = image_info[imagelist[i].ftag].image_fn;
		var pref = imagelist[i].fn;
		if (pref != "") {
			imagelist[i].fn = pref + fn;
		} else {
			imagelist[i].fn = fn;
		}
		// alert (i + " \"" + imagelist[i].ftag + "\" pref: \"" + pref + "\" fn: \"" + fn + "\" filename: \"" + imagelist[i].fn + "\"");
	}
}

function exhibit_info_item (name, link)
{
	this.exhibit_name = name;
	this.exhibit_link = link;
}

// One entry for each exhibit, most recent first.
var exhibit_info = [
	// Put this next one in when the exhibit goes up.
	new exhibit_info_item ("2010 Page Bond Gallery", "Exhibit_2010_09_Page_Bond.htm"),
	// Add a page for 2010 juried shows
	// Add a page for 2009 juried shows
	new exhibit_info_item ("2009 12 12 Gallery", "Exhibit_2008_09_1212.htm"),
	new exhibit_info_item ("2008 Page Bond Gallery", "Exhibit_2008_06_Page_Bond.htm"),
	new exhibit_info_item ("2007 WFP", "Exhibit 2007 11 Wyoming Frontier Prison.htm"),
	new exhibit_info_item ("2007 Western Interiors", "Exhibit 2007 03 Western Interiors.htm"),
	new exhibit_info_item ("2004 Earths Shadow", "Exhibit 2004 10 Earths Shadow.htm"),
	new exhibit_info_item ("2003 New Work", "Exhibit 2003 04 New Work.htm"),
];

function get_most_recent_exhibit ()
{
	var link = exhibit_info[0].exhibit_link;
	return link;
}

function write_exhibit_list ()
{
	for (i = 0; i < exhibit_info.length; i++) {
		var ex_link = exhibit_info[i].exhibit_link;
		var ex_name = exhibit_info[i].exhibit_name;
		document.write ("<h3><a href=\"" + ex_link + "\">" + ex_name + "</a></h3>");
	}
}

//
// Function to generate gallery navigation links.  Vertical.
//
function gallery_navigation (prefix)
{
	if (arguments.length > 0) {
		pref = prefix;
	} else {
		pref = "";
	}
	
	document.write ("<h3><a href=\"" + pref + "../index.html\">Home</a></h3>");
	document.write ("<h3><a href=\"" + pref + "Newest.htm\">Most Recent</a></h3>");
	document.write ("<h3><a href=\"" + pref + "Panoramic 1.htm\">Panoramic</a></h3>");
	document.write ("<h3><a href=\"" + pref + "Desert 1.htm\">Desert</a></h3>");
	document.write ("<h3><a href=\"" + pref + "Water.htm\">Water</a></h3>");
	document.write ("<h3><a href=\"" + pref + "Sky.htm\">Sky</a></h3>");
	document.write ("<h3><a href=\"" + pref + "Surfaces 1.htm\">Surfaces</a></h3>");
	document.write ("<h3><a href=\"" + pref + "Interiors 1.htm\">Interiors</a></h3>");
	document.write ("<h3><a href=\"" + pref + "../Scans/Scan Index.html\">Index</a></h3>");
	document.write ("<h3><a href=\"" + pref + get_most_recent_exhibit() + "\">Recent Exhibits</a></h3>");
	document.write ("<h3><a href=\"" + pref + "../Setup.htm\">Setup</a></h3>");
}

//
// Function to generate gallery navigation links.  Horizontal.
//
function gallery_navigation_h ()
{

	document.write ("<table border=\"0\" align=\"center\">");
	document.write ("<tr>");

	document.write ("<td height=\"24\"> <table border=\"1\" align=\"center\">");
	document.write ("<td width=\"84\" height=\"24px\"> <a href=\"../index.html\"> <p class=scan_index_item_center>Home</p></a></td>");
	document.write ("</table> </td>");

	document.write ("<td height=\"24\"> <table border=\"1\" align=\"center\">");
	document.write ("<td width=\"84\" height=\"24px\"> <a href=\"Panoramic 1.htm\"> <p class=scan_index_item_center>Panoramic</p></a></td>");
	document.write ("</table> </td>");

	document.write ("<td height=\"24\"> <table border=\"1\" align=\"center\">");
	document.write ("<td width=\"84\" height=\"24px\"> <a href=\"Desert 1.htm\"> <p class=scan_index_item_center>Desert</p></a></td>");
	document.write ("</table> </td>");

	document.write ("<td height=\"24\"> <table border=\"1\" align=\"center\">");
	document.write ("<td width=\"84\" height=\"24px\"> <a href=\"Water.htm\"> <p class=scan_index_item_center>Water</p></a></td>");
	document.write ("</table> </td>");

	document.write ("<td height=\"24\"> <table border=\"1\" align=\"center\">");
	document.write ("<td width=\"84\" height=\"24px\"> <a href=\"Sky.htm\"> <p class=scan_index_item_center>Sky</p></a></td>");
	document.write ("</table> </td>");

	document.write ("<td height=\"24\"> <table border=\"1\" align=\"center\">");
	document.write ("<td width=\"84\" height=\"24px\"> <a href=\"Surfaces 1.htm\"> <p class=scan_index_item_center>Surfaces</p></a></td>");
	document.write ("</table> </td>");

	document.write ("<td height=\"24\"> <table border=\"1\" align=\"center\">");
	document.write ("<td width=\"84\" height=\"24px\"> <a href=\"Interiors 1.htm\"> <p class=scan_index_item_center>Interiors</p></a></td>");
	document.write ("</table> </td>");

	document.write ("<td height=\"24\"> <table border=\"1\" align=\"center\">");
	document.write ("<td width=\"84\" height=\"24px\"> <a href=\"../Scans/Scan Index.html\"> <p class=scan_index_item_center>Index</p></a></td>");
	document.write ("</table> </td>");

	document.write ("</tr>");
	document.write ("</table>");
}

// One entry for header image.
// One of these images is chosen at random and it's index is stored in a session cookie.
var header_image_names = [
	{ img_name:"2009_03 89_217 1 s-rgb 800.jpg" },
	{ img_name:"3_2003 112_163 1 rev4 s-rgb 800.jpg" },
	{ img_name:"2008_02 120_272 3 work s-rgb 800.jpg" },
	{ img_name:"2007_08 75_129 1 work s-rgb 800.jpg" },
	{ img_name:"2007_08 100_129 3 work s-rgb 800.jpg" },
	{ img_name:"2010_04 79_225 3 work s-rgb 800.jpg" }
];

// img_no is an index into the header_image_names array.
function cookie_set_img_no (img_no)
{
	var lsfotodata = new Cookie ("lsfotodata");
	lsfotodata.img_no = img_no;
	// Session cookie, first arg is null.
	lsfotodata.store(null, "/");
	// alert ("set: cookie img_no now " +  lsfotodata.img_no);
}

function cookie_get_img_no ()
{
	var lsfotodata = new Cookie ("lsfotodata");
	var img_no;
	if (!lsfotodata.img_no) {
		// Choose image at random.
		img_no = Math.floor(Math.random() * (header_image_names.length));
		lsfotodata.img_no = img_no;
		// Session cookie, first arg is null.
		lsfotodata.store (null, "/");
		// alert ("get: A: img_no not set, now " + img_no);
	} else {
		img_no = lsfotodata.img_no;
	}

	// Defend against weird errors.
	if (img_no < 0 || img_no > (header_image_names.length - 1)) {
		img_no = header_image_names.length - 1;
		lsfotodata.img_no = img_no;
		// Session cookie, first arg is null.
		lsfotodata.store (null, "/");
		// alert ("get: B: img_no not set, now " + img_no);
	}

	// alert ("get: img_no " + img_no);

	return (img_no);
}

function header_image (img_name)
{
	this.img_name = img_name;
}

// Return name of header image.
function get_header_image ()
{
	var img;
	var img_no = header_image_names.length - 1;
	// Get from session cookie.
	img_no = cookie_get_img_no ();
	img = header_image_names[img_no].img_name;
	return img;
}

//
// Web site header and image.
//
function lsfoto_header ()
{
	img = get_header_image ();

	document.write ("<table border=\"0\" align=\"center\"> <tr> <td>");
	document.write ("<div class=\"ydsf left\">");
	document.write ("<div class=\"inner\">");
	document.write ("<img src=\"" + img + "\" width=\"800\" height=\"261\">");
	document.write ("</div>");
	document.write ("</div>");
	document.write ("</td> </tr> </table>");
	document.write ("<p align=\"center\"><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"4\">Lee Saloutos Landscape Photography</font></p>");
}

//
// Navigation main page
//
function lsfoto_navigation ()
{
	document.write ("<h3 align=\"left\"><a href=\"Images Index.htm\">Images</a></h3>");
	document.write ("<h3 align=\"left\"><a href=\"About.htm\">About</a></h3>");
	document.write ("<h3 align=\"left\"><a href=\"News.htm\">News</a></h3>");
	document.write ("<h3 align=\"left\"><a href=\"Representation.htm\">Representation</a></h3>");
	// document.write ("<h3 align=\"left\">About</h3>");
	document.write ("<h3 align=\"left\">" + lsfoto() + "</h3>");
	document.write ("<h3 align=\"left\"><a href=\"Setup.htm\">Setup</a></h3>");
	document.write ("<h3 align=\"left\"><a href=\"index.html\">Home</a></h3>");
}

// Top and bottom margin for larger image window.  Window height is image height + 2 * this number.
function gallery_info_window_tb_margin ()
{
	return (8);
}

// Left and right margin for larger image window.  Window width is image width + 2 * this number.
function gallery_info_window_lr_margin ()
{
	return (8);
}

// Constructor for information describing an image in a gallery page.
// Default values here make sense for a "6x7" image ..
function gallery_info_item (t_width, t_height, i_width, i_height, iw_width, iw_height)
{
	this.t_width = t_width || 256;			// Thumb width
	this.t_height = t_height || 197;		// Thumb height
	this.i_width = i_width || 800;			// Larger image width
	this.i_height = i_height || 632;		// Larger image height
	this.iw_width = iw_width || this.i_width + 2 * gallery_info_window_lr_margin ();	// Larger image window width
	this.iw_height = iw_height || this.i_height + 2 * gallery_info_window_tb_margin();	// Larger image window height
}

// Get default display sizes for a 6x7 image.
function gallery_67_info ()
{
	// defaults to 67 values..
	var i67 = new gallery_info_item ();
	return i67;
}

// Get default display sizes for a 6x17 image.
function gallery_617_info ()
{
	var i617 = new gallery_info_item ();
	// Set to 617 defaults ..
	i617.t_width = 256;			// Thumb width
	i617.t_height = 84;			// Thumb height
	i617.i_width = 1024;			// Larger image width
	i617.i_height = 340;			// Larger image height
	i617.iw_width = i617.i_width + 2 * gallery_info_window_lr_margin ();	// Larger image window width
	i617.iw_height = i617.i_height + 2 * gallery_info_window_tb_margin();	// Larger image window height
	return i617;
}

//
// Get number of columns in a gallery page.
// If stored in cookie use that value, otherwise default.
//
function get_gallery_ncolumns ()
{
	var ncols = cookie_get_numcols ();
	return ncols;
}

// Default number of columns in gallery pages.
function get_default_ncolumns ()
{
	return 4;
}

// Return information describing display of a set of "6x7" images on a gallery page.
// This depends on the number of columns that are being displayed.
function get_gallery_67_info (ncols)
{
	var info67 = gallery_67_info ();

	// Fiddle with thumbnail sizes depending on number of columns displayed.
	if (!ncols) {
		return info67;		// Return defaults
	} else if (ncols == 2) {
		return info67;		// Return defaults, which are for 2 columns.
	} else if (ncols == 3) {
		info67.t_width  = 192;
		info67.t_height = 148;
	} else if (ncols == 4) {
		info67.t_width  = 128;
		info67.t_height = 99;
	} else if (ncols == 5) {
		info67.t_width  = 100;
		info67.t_height = 77;
	}

	return info67;
}

// Return information describing display of a set of "6x17" images on a gallery page.
// This depends on the number of columns that are being displayed.
function get_gallery_617_info (ncols)
{
	var info617 = gallery_617_info ();

	// Fiddle with thumbnail sizes depending on number of columns displayed.
	if (!ncols) {
		return info617;		// Return defaults
	} else if (ncols == 2) {
		return info617;		// Return defaults, which are for 2 columns.
	} else if (ncols == 3) {
		info617.t_width  = 192;
		info617.t_height = 63;
	} else if (ncols == 4) {
		info617.t_width  = 128;
		info617.t_height = 42;
	} else if (ncols == 5) {
		info617.t_width  = 100;
		info617.t_height = 33;
	}

	return info617;
}

	var all_namedColors = new Array(
		'AliceBlue','AntiqueWhite','Aqua','Aquamarine',
		'Azure','Beige','Bisque','Black',
		'BlanchedAlmond','Blue','BlueViolet','Brown',
		'BurlyWood','CadetBlue','Chartreuse','Chocolate',
		'Coral','CornflowerBlue','Cornsilk','Crimson',
		'Cyan','DarkBlue','DarkCyan','DarkGoldenRod',
		'DarkGray', 'DarkGreen','DarkKhaki','DarkMagenta',
		'DarkOliveGreen','Darkorange','DarkOrchid','DarkRed',
		'DarkSalmon','DarkSeaGreen','DarkSlateBlue','DarkSlateGray',
		'DarkTurquoise','DarkViolet','DeepPink','DeepSkyBlue',
		'DimGray','DodgerBlue','Feldspar','FireBrick',
		'FloralWhite','ForestGreen','Fuchsia','Gainsboro',
		'GhostWhite','Gold','GoldenRod','Gray',
		'Green','GreenYellow','HoneyDew','HotPink',
		'IndianRed','Indigo','Ivory','Khaki',
		'Lavender','LavenderBlush', 'LawnGreen','LemonChiffon',
		'LightBlue','LightCoral','LightCyan','LightGoldenRodYellow',
		'LightGrey','LightGreen','LightPink','LightSalmon',
		'LightSeaGreen', 'LightSkyBlue','LightSlateBlue','LightSlateGray',
		'LightSteelBlue','LightYellow','Lime','LimeGreen',
		'Linen','Magenta','Maroon','MediumAquaMarine',
		'MediumBlue','MediumOrchid','MediumPurple','MediumSeaGreen',
		'MediumSlateBlue','MediumSpringGreen','MediumTurquoise','MediumVioletRed',
		'MidnightBlue', 'MintCream','MistyRose','Moccasin',
		'NavajoWhite','Navy','OldLace','Olive',
		'OliveDrab','Orange','OrangeRed','Orchid',
		'PaleGoldenRod','PaleGreen', 'PaleTurquoise','PaleVioletRed',
		'PapayaWhip','PeachPuff','Peru','Pink',
		'Plum','PowderBlue','Purple','Red',
		'RosyBrown','RoyalBlue','SaddleBrown', 'Salmon',
		'SandyBrown','SeaGreen','SeaShell','Sienna',
		'Silver','SkyBlue','SlateBlue','SlateGray',
		'Snow','SpringGreen','SteelBlue','Tan',
		'Teal','Thistle', 'Tomato','Turquoise',
		'Violet','VioletRed','Wheat','White',
		'WhiteSmoke','Yellow','YellowGreen'
	);
	
	 var all_namedColorRGB = new Array(
		'#F0F8FF','#FAEBD7','#00FFFF','#7FFFD4',
		'#F0FFFF','#F5F5DC','#FFE4C4','#000000',
		'#FFEBCD','#0000FF','#8A2BE2','#A52A2A',
		'#DEB887', '#5F9EA0','#7FFF00','#D2691E',
		'#FF7F50','#6495ED','#FFF8DC','#DC143C',
		'#00FFFF','#00008B','#008B8B','#B8860B',
		'#A9A9A9','#006400','#BDB76B','#8B008B',
		'#556B2F','#FF8C00','#9932CC','#8B0000',
		'#E9967A','#8FBC8F','#483D8B','#2F4F4F',
		'#00CED1','#9400D3','#FF1493','#00BFFF',
		'#696969','#1E90FF','#D19275', '#B22222',
		'#FFFAF0','#228B22','#FF00FF','#DCDCDC',
		'#F8F8FF','#FFD700','#DAA520','#808080',
		'#008000','#ADFF2F','#F0FFF0','#FF69B4',
		'#CD5C5C','#4B0082', '#FFFFF0','#F0E68C',
		'#E6E6FA','#FFF0F5','#7CFC00','#FFFACD',
		'#ADD8E6','#F08080','#E0FFFF','#FAFAD2',
		'#D3D3D3','#90EE90','#FFB6C1','#FFA07A',
		'#20B2AA', '#87CEFA','#8470FF','#778899',
		'#B0C4DE','#FFFFE0','#00FF00','#32CD32',
		'#FAF0E6','#FF00FF','#800000','#66CDAA',
		'#0000CD','#BA55D3','#9370D8','#3CB371',
		'#7B68EE','#00FA9A','#48D1CC','#C71585',
		'#191970','#F5FFFA','#FFE4E1','#FFE4B5',
		'#FFDEAD','#000080','#FDF5E6','#808000',
		'#6B8E23','#FFA500','#FF4500', '#DA70D6',
		'#EEE8AA','#98FB98','#AFEEEE','#D87093',
		'#FFEFD5','#FFDAB9','#CD853F','#FFC0CB',
		'#DDA0DD','#B0E0E6','#800080','#FF0000',
		'#BC8F8F','#4169E1', '#8B4513','#FA8072',
		'#F4A460','#2E8B57','#FFF5EE','#A0522D',
		'#C0C0C0','#87CEEB','#6A5ACD','#708090',
		'#FFFAFA','#00FF7F','#4682B4','#D2B48C',
		'#008080', '#D8BFD8','#FF6347','#40E0D0',
		'#EE82EE','#D02090','#F5DEB3','#FFFFFF',
		'#F5F5F5','#FFFF00','#9ACD32'
	);	

// Constructor for a colorinfo.
function colorinfo (name, rgb, link_rgb, link_hl_rgb) {
	this.name = name;
	this.rgb = rgb;
	this.link_rgb = link_rgb || "#777777"; // Grayunless specified otherwise. 
	this.link_hl_rgb = link_hl_rgb || "#FFFFFF"; // White unless specified otherwise.
}

// Default background color, index into bg_colors array.
function get_default_bgcolor () { return 6; } // "LightGrey" 
// Description of permitted background colors, link color, link highlight color.
var bg_colors = [
	{ name:"AntiqueWhite", rgb:"#FAEBD7", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"DarkGray", rgb:"#A9A9A9", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"DarkSlateGray", rgb:"#2F4F4F", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"DimGray", rgb:"#696969", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"Gray", rgb:"#808080", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"Ivory", rgb:"#FFFFF0", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"LightGrey", rgb:"#D3D3D3", link_rgb:"#666666", link_hl_rgb:"#FFFFFF" },		// Default
	{ name:"LightSlateGray", rgb:"#778899", link_rgb:"#BBBBBB", link_hl_rgb:"#FFFFFF" },
	{ name:"NavajoWhite", rgb:"#FFDEAD", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"Silver", rgb:"#C0C0C0", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"SlateGray", rgb:"#708090", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"Snow", rgb:"#FFFAFA", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" },
	{ name:"White", rgb:"#FFFFFF", link_rgb:"#666666", link_hl_rgb:"#A9A9A9" },
	{ name:"WhiteSmoke", rgb:"#F5F5F5", link_rgb:"#777777", link_hl_rgb:"#FFFFFF" }
];

// Return integer index into array of colors for color names "str".
function bg_colornum (str) {
	var i;
	for (i = 0; i < bg_colors.length; i++) {
		if (bg_colors[i].name == str) return i;
	}
	return -1;
}

// Return name for a given color number.
function bg_colorof(color) {
	if (color < 0 || color >= bg_colors.length) {
		return "";
	} else {
		return bg_colors[color].name;
	}
}

// Return RGB for a given color number.
function bg_RGB_colorof(color) {
	if (color < 0 || color >= bg_colors.length) {
		return "";
	} else {
		return bg_colors[color].rgb;
	}
}

// Return link highlight RGB for a given color number.
function link_hl_RGB_colorof(color) {
	if (color < 0 || color >= bg_colors.length) {
		return "";
	} else {
		return bg_colors[color].link_hl_rgb;
	}
}

// Return link RGB for a given color number.
function link_RGB_colorof(color) {
	if (color < 0 || color >= bg_colors.length) {
		return "";
	} else {
		return bg_colors[color].link_rgb;
	}
}

// Color is an index into the bg_ arrays.
function cookie_set_bgcolor (color)
{
	var lsfotodata = new Cookie ("lsfotodata");
	lsfotodata.bg_color = color;
	lsfotodata.store(1000, "/");
	// alert ("set: cookie bg_color now " +  lsfotodata.bg_color);
}

function cookie_get_bgcolor ()
{
	var lsfotodata = new Cookie ("lsfotodata");
	var bg_color;
	if (!lsfotodata.bg_color) {
		// Default value ..
		bg_color = get_default_bgcolor();
		lsfotodata.bg_color = bg_color;
		lsfotodata.store (1000, "/");
		// alert ("get: bg_color not set, now " + bg_color);
	} else {
		bg_color = lsfotodata.bg_color;
	}
	// alert ("get: bg_color " + bg_color);
	return (bg_color);
}

//
// Set background color in all web page div elements.
// Dig this value out of a cookie if the cookie exists and contains a value.
//
function set_div_background_color ()
{
	var e;
	var bg_color;

	bg_color = "#ffffff"; // white
	bg_color = bg_RGB_colorof(cookie_get_bgcolor());

	e = document.getElementById("LsfotoEntirePage");
	if (e) e.style.backgroundColor = bg_color;
	
	// No need to set the background color in the other pieces..
	return;

	e = document.getElementById("LsfotoLeft");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("LsfotoRight");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("LsfotoHeader");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("LsfotoFooter");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("LsfotoNav1");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("LsfotoNav2");
	if (e) e.style.backgroundColor = bg_color;

	e = document.getElementById("GalleryHeader");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("GalleryLeft");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("GalleryNav");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("GalleryContent");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("GalleryRight");
	if (e) e.style.backgroundColor = bg_color;

	e = document.getElementById("ScanPageBanner");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("ScanPageNavigation");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("ScanPageContent");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("ScanPageRight");
	if (e) e.style.backgroundColor = bg_color;
	e = document.getElementById("ScanPageLeft");
	if (e) e.style.backgroundColor = bg_color;
}

// Seems like the simplest way to do this dynamically - just regenerate the CSS styles each time.
function set_css_link_styles ()
{
	var bgc = cookie_get_bgcolor();
	var bg_color = bg_RGB_colorof(bgc);
	var link_color = link_RGB_colorof(bgc);
	var link_hl_color = link_hl_RGB_colorof(bgc);

	document.write ("<style type=\"text/css\">");
	document.write ("a:link { color: " + link_color + "; text-decoration:none; }");
	document.write ("a:visited { color: " + link_color + "; text-decoration:none; }");
	document.write ("a:link:hover, a:visited:hover { color: " + link_hl_color + "; background-color: " + bg_color + "; text-decoration:none; }");
	document.write ("a:link:active, a:visited:active { color: " + link_hl_color + "; background-color: " + bg_color + "; text-decoration:none; }");
	document.write ("</style>");
}


