// JavaScript Document

var sequence = [
	{ "catnum" : "DSD_2811", "aspect" : "portrait",  "name" : "Yellowstone Bison" },
	{ "catnum" : "DSC_9305", "aspect" : "landscape", "name" : "Gaping Hippo" },
	{ "catnum" : "DSC_9568", "aspect" : "landscape", "name" : "Hyena Portrait" },
	{ "catnum" : "DSC_9435", "aspect" : "landscape", "name" : "Ngorongoro Zebra" },
	{ "catnum" : "DSC_9623", "aspect" : "portrait",  "name" : "Zebra Portrait" },
	{ "catnum" : "DSC_9811", "aspect" : "landscape", "name" : "Elephant" },
	{ "catnum" : "DSC_9591", "aspect" : "landscape", "name" : "Pride of Lions" },
	{ "catnum" : "DSC_9743", "aspect" : "landscape", "name" : "Cheetah" },
	{ "catnum" : "DSD_0322", "aspect" : "portrait",  "name" : "Girrrrrrraffe!" },
	{ "catnum" : "DSC_5770", "aspect" : "portrait",  "name" : "Snowy Cardinal" },
	{ "catnum" : "DSC_6333", "aspect" : "portrait",  "name" : "Titmouse on an Apple Tree" },
	{ "catnum" : "DSC_9316", "aspect" : "landscape", "name" : "Black-Winged Stilt" } ,
	{ "catnum" : "DSC_9795", "aspect" : "landscape", "name" : "Black Kite on the Prowl" },
	{ "catnum" : "DSD_0028", "aspect" : "portrait",  "name" : "Marabou Stork" },
	{ "catnum" : "DSD_2838", "aspect" : "landscape", "name" : "Bison Family at Sunset" },
	{ "catnum" : "DSC_4484", "aspect" : "landscape", "name" : "Grand Prismatic Hot Spring" },
	{ "catnum" : "DSC_4802", "aspect" : "landscape", "name" : "The Tetons at Sunset" },
	{ "catnum" : "zg136",    "aspect" : "landscape", "name" : "The Mercer Oak, Sunrise" },
	{ "catnum" : "DSC_1714", "aspect" : "landscape", "name" : "Tuscany 1" },
	{ "catnum" : "DSC_5103", "aspect" : "landscape", "name" : "Tuscan Hills" },
	{ "catnum" : "DSC_4901", "aspect" : "portrait",  "name" : "Tuscan Countryside" },
	{ "catnum" : "DSC_5527", "aspect" : "landscape", "name" : "Mt Marcy in Winter" },
	{ "catnum" : "DSC_5520", "aspect" : "landscape", "name" : "The Airplane Eater" },
	{ "catnum" : "DSC_6839", "aspect" : "landscape", "name" : "Avalanche Pass Lake" },
	{ "catnum" : "DSC_6842", "aspect" : "portrait",  "name" : "Rescue Boat in Fog" },
	{ "catnum" : "DSC_7243", "aspect" : "portrait",  "name" : "The Maroon Bells" },
	{ "catnum" : "DSC_7770", "aspect" : "landscape", "name" : "Swamp Boardwalk Solitude" },
	{ "catnum" : "DSC_8909", "aspect" : "landscape", "name" : "Dawn at 15,000 ft" },
	{ "catnum" : "DSD_0253", "aspect" : "landscape", "name" : "Acacia Tree" },
	{ "catnum" : "DSD_0889", "aspect" : "landscape", "name" : "Joshua Tree Triptych" },
	{ "catnum" : "DSD_0825", "aspect" : "landscape", "name" : "Split Rock" },
	{ "catnum" : "DSC_9130", "aspect" : "landscape", "name" : "Maasai Dancers" },
	{ "catnum" : "DSC_2228", "aspect" : "landscape", "name" : "Tree of Light" },
	{ "catnum" : "DSD_0867", "aspect" : "landscape", "name" : "Yucca Leaves" },
	{ "catnum" : "DSD_0726", "aspect" : "landscape", "name" : "Lunar Eclipse" },
	{ "catnum" : "DSC_0205", "aspect" : "portrait",  "name" : "Cicada Dangling on a Plant" }
];

var hashlist = {
};

for ( j = 0; j < sequence.length; j++ ) {
	eval('hashlist.'+sequence[j].catnum+'='+j);
}

var maxindex = j-1;

function GetElement(inID) {
	if (document.getElementById) {
			return document.getElementById(inID);
	}
	else if (document.all) {
			return document.all[inID];
	}
	else if (document.layers) {
			return document.layers[inID];
	}
}

