/***********************************************************************************																																									** 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>Eric is planning a picture.</ref> The snow and ice covered lake is Crooked Lake. The ice is probably still less than an inch thick. 10:44.");slides[1] = new Slide("02", "<ref>Look down and through the ice.</ref> I'm not sure how this neat shape managed to form but it's sure pretty. 10:45.");slides[2] = new Slide("03", "Looking out towards <ref>Sugarloaf Lake from the top of a hill.</ref> 11;08.");slides[3] = new Slide("04", "<ref>We had lunch here at Winnewanna Lake.</ref> The day has cleared up somewhat and this could be a nice little lake to paddle in. Now it's a nice quiet lake with a frosty shoreline. 12:44.");// sundayslides[4] = new Slide("05", "<ref>Nancy, Paul S, and Matt are having fun.</ref> Surprisingly the ice is strong enough to hold someone if they're careful. The lake is Gorman Lake. 12:40.");slides[5] = new Slide("06", "<ref>Andy is having too much fun.</ref> Sure looks confident that he won't fall in, doesn't he. His wife didn't share his confidence. 12:43.", 525, 700);slides[6] = new Slide("07", "<ref>Gorman lake is flecked with ice.</ref> At this time of year the patterns that form between ice, water, land, and sky are quite intricate. 12:44.");slides[7] = new Slide("08", "<ref>Hurry Paul S. and scooch under the fallen tree.</ref> This was perhaps the worst blowndown anyone had to navigate on the hike today. 13:25.");slides[8] = new Slide("09", "Sure it's hard to see them <ref>but, Siler (Paul H) and Julie are definitely going to take different routes across the tree.</ref> 13:25.", 525, 700);
