/***********************************************************************************																																									** This file contains the slide objects to be presented in the photo gallery and   ** trip journal. The MakeCaptions1 function defined elsewhere will use the objects ** found in the "slides" (case sensitive) array. Each array element will contain a ** single Slide object which means it must have a reference ID, link, width, and   ** height. The reference ID string, the width and height are integers, the link    ** is a string. To define where the hyperlink text within the link goes surround   ** it the meta-tag <ref></ref> pair.																							  **																																									**																																									** Parameters for the Slide function call are (reference, link text, width, height ** and copyright string. The first two are required. 															***********************************************************************************/defaultSlideWidth=700;defaultSlideHeight=525;defaultSlideCopyright="2003";// Used by MakeCaptions3defaultThumbWidth=300;defaultAlignment = "below";defaultMaxPerRow = 1;var slides = new Array();// saturdayslides[0] = new Slide("01", "<ref>One of many neat stumps</ref> along the way. 11:22.");slides[1] = new Slide("02", "<ref>NCT blazes are blue</ref> while spur trails are white. 11:44.");slides[2] = new Slide("03", "<ref>Near the top of the ridge</ref> and our first snack spot. 12:27.");slides[3] = new Slide("04", "<ref>Entering into a pine forest</ref> where George and I got confused. 13:10.", 525, 700, "2003", ".jpg", 170);slides[4] = new Slide("05", "I believe <ref>this is Bowman Lake</ref> in the background. 13:44.");slides[5] = new Slide("06", "<ref>Dreamy clouds</ref> drifitng over our lunch spot. 14:18.");slides[6] = new Slide("07", "<ref>Brilliantly lit pines.</ref> The shadows belong to Eric and myself. 15:38.", 525, 700, "2003", ".jpg", 170);slides[7] = new Slide("08", "<ref>The Super stump in a hemlock grove.</ref> Eric provides scale. 16:18.");// sundayslides[8] = new Slide("09", "<ref>Lunch spot</ref> at a small marsh / pond. 12:00.");slides[9] = new Slide("10", "<ref>Look at this nice pond.</ref> It was a great lunch spot. 12:02.");slides[10] = new Slide("11", "I think <ref>this is just beyond Sterling marsh</ref>, you'd sink in that open area. 14:15.");slides[11] = new Slide("12", "<ref>This clear pretty stream</ref> was near the hike's end. 14:33.", 525, 700, "2003", ".jpg", 170);
