/**
 * Copyright 2000,2001,2002,2003,2004
 * Mike Garrison
 */

/*
  Regions and urls
*/

  Olympics = "olympics.html"
  EastCascades = "east_cascades.html"
  NorthCascades = "north_cascades.html"
  SouthCascades = "south_cascades.html"
  MtnLoop = "mtn_loop.html"
  I90 = "snoq_pass.html"
  Rainier = "rainier.html"

/*
  object prototypes
*/

function season(iswinter,isspring,issummer,isfall) {
    this.iswinter = iswinter;
    this.isspring = isspring;
    this.issummer = issummer;
    this.isfall = isfall;
    };

function time(ishalf,isfull,islonger) {
    this.ishalf = ishalf;
    this.isfull = isfull;
    this.islonger = islonger;
    };

function basicdata(seasons,loc,features,bestmap,time,jurisdiction,contact,special) {
    this.seasons = seasons;
    this.loc = loc;
    this.features = features;
    this.bestmap = bestmap;
    this.time = time;
    this.jurisdiction = jurisdiction;
    this.contact = contact;
    this.special = special;
    };

function author(authname,authemail) {
    this.authname = authname;
    this.authemail = authemail;
    };

function comment(comwriter,comtext,comdate) {
    this.comwriter = comwriter;
    this.comtext = comtext;
    this.comdate = comdate;
    };

function trip(tripname,tripURL,mapURL,season,region,time,basicdata,summary,maintext,author,revdate,comments,commentarray,addendum) {
    this.tripname = tripname;
    this.tripURL = tripURL;
    this.mapURL = tripURL;
    this.season = season;
    this.region = region;
    this.time = time;
    this.basicdata = basicdata;
    this.summary = summary;
    this.maintext = maintext;
    this.region = region;
    this.author = author;
    this.revdate = revdate;
    this.comments = comments;
    this.commentarray = commentarray;
    this.addendum = addendum;
    };

/** Trip List
*/


triplist = new Array("\
abiel","\
adamsNorthRidge","\
alta","\
angeles","\
bandera","\
baring","\
bostonBasin","\
chair","\
commonwealth","\
congIron","\
daniel","\
delCampo","\
dickerman","\
ellinor","\
fay","\
forgotten","\
goatIsland","\
gothic","\
guye","\
hessong","\
hiddenLake","\
hibox","\
hurricaneHill","\
kaleetan","\
kendall","\
middleHiggins","\
persis","\
pinnacle","\
pratt","\
pugh","\
rampartRidge","\
red","\
robin","\
ruth","\
silver","\
snoqualmie","\
southIngalls","\
sperry","\
sthelens","\
sunrise","\
surprise","\
stillaguamish","\
tamanos","\
threeFingers","\
tinkham","\
tomyhoi","\
trappers","\
vesper","\
washington","\
watson","\
web","\
westHiggins");



/** TRIPS BY MIKE **/

/** Abiel
 */
 
abiel = new trip();

abiel.tripname = "Abiel Peak";
abiel.tripURL = "trips/abiel.html";
abiel.mapURL = "http://www.terraserver.com/view.asp?cx=615999&cy=5246025&proj=32610&mpp=10&pic=map&prov=lv&stac=10021000&ovrl=-1&drwl=-1";
abiel.season = new season(false,false,true,true);
abiel.region = "I90";
abiel.time = new time(true,false,false);
abiel.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
abiel.revdate = "July 12, 2010";
abiel.comments = 0;

abiel.commentarray = new Array(abiel.comments);

abiel.basicdata = new basicdata();
abiel.basicdata.seasons = "easy and short";
abiel.basicdata.loc ="Snoqualmie Pass";
abiel.basicdata.features = "mostly a path, with perhaps some routefinding";
abiel.basicdata.bestmap = "USGS Lost Lake";
abiel.basicdata.time = "A few hours";
abiel.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
abiel.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
abiel.basicdata.special = "Could be combined with Silver and/or Tinkham";

abiel.summary = "Short and easy summit, finding it is most of the work.";


/** Silver
 */
 
silver = new trip();

silver.tripname = "Silver Peak";
silver.tripURL = "trips/silver.html";
silver.mapURL = "http://www.terraserver.com/view.asp?cx=615999&cy=5246025&proj=32610&mpp=10&pic=map&prov=lv&stac=10021000&ovrl=-1&drwl=-1";
silver.season = new season(false,false,true,true);
silver.region = "I90";
silver.time = new time(true,false,false);
silver.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
silver.revdate = "July 12, 2010";
silver.comments = 0;

silver.commentarray = new Array(silver.comments);

silver.basicdata = new basicdata();
silver.basicdata.seasons = "easy and short";
silver.basicdata.loc ="Snoqualmie Pass";
silver.basicdata.features = "mostly a path, with perhaps some routefinding";
silver.basicdata.bestmap = "USGS Lost Lake";
silver.basicdata.time = "A few hours";
silver.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
silver.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
silver.basicdata.special = "Could be combined with Abiel and/or Tinkham";

silver.summary = "Short and easy summit, finding it is most of the work.";


/** Baring
 */
 
baring = new trip();

baring.tripname = "Baring Mountain";
baring.tripURL = "trips/baring.html";
baring.mapURL = "http://www.topozone.com/map.asp?lat=47.787&lon=-121.43&s=50";
baring.season = new season(false,true,true,true);
baring.region = "NorthCascades";
baring.time = new time(false,true,false);
baring.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
baring.revdate = "June 9, 2003";
baring.comments = 0;

baring.commentarray = new Array(baring.comments);

baring.basicdata = new basicdata();
baring.basicdata.seasons = "depends on your preference for snow";
baring.basicdata.loc ="North Cascades";
baring.basicdata.features = "exposed North Face";
baring.basicdata.bestmap = "USGS Baring";
baring.basicdata.time = "All Day";
baring.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
baring.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Skykomish Ranger Station</a>';
baring.basicdata.special = "Fun, but hard work.";

baring.summary = "Classic Western Washington climb has everything from steep bushwacking to alpine slabs.";



/** Trappers Peak
 */
 
trappers = new trip();

trappers.tripname = "Trappers Peak";
trappers.tripURL = "trips/trappers.html";
trappers.mapURL = "http://www.topozone.com/map.asp?z=10&n=5391500&e=623300&s=100&size=s";
trappers.season = new season(false,false,true,true);
trappers.region = "NorthCascades";
trappers.time = new time(false,true,false);
trappers.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
trappers.revdate = "July 15, 2002";
trappers.comments = 0;

trappers.commentarray = new Array(trappers.comments);

trappers.basicdata = new basicdata();
trappers.basicdata.seasons = "summer or fall";
trappers.basicdata.loc ="North Cascades";
trappers.basicdata.features = "viewpoint";
trappers.basicdata.bestmap = "USGS Mt. Triumph";
trappers.basicdata.time = "All Day (because of the driving)";
trappers.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
trappers.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Marblemount Ranger Station</a>';
trappers.basicdata.special = "Experience will vary with snow line.";

trappers.summary = "This is a nice little ridge run with outstanding views.";



/** Mt. Ellinor
 */
 
ellinor = new trip();

ellinor.tripname = "Mount Ellinor";
ellinor.tripURL = "trips/ellinor.html";
ellinor.mapURL = "http://www.topozone.com/map.asp?lat=47.5222&lon=-123.2322&s=50&size=s";
ellinor.season = new season(false,true,false,false);
ellinor.region = "Olympics";
ellinor.time = new time(false,true,false);
ellinor.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
ellinor.revdate = "March 20, 2000";
ellinor.comments = 0;

ellinor.commentarray = new Array(ellinor.comments);

ellinor.basicdata = new basicdata();
ellinor.basicdata.seasons = "spring";
ellinor.basicdata.loc ="Southern Olympics";
ellinor.basicdata.features = "1000 vertical foot glissade chute";
ellinor.basicdata.bestmap = "USGS Mt. Washington<br>USGS Mt. Skokomish";
ellinor.basicdata.time = "All Day (because of the driving)";
ellinor.basicdata.jurisdiction = "Olympic National Forest";
ellinor.basicdata.contact = "Hoodsport Ranger Station";
ellinor.basicdata.special = "Go as soon as the road is drivable to the \
lower trailhead. Take the lower trail up.";

ellinor.summary = "For about a month each year, this fun jaunt is one of \
the best day trips in Washington State. It is the southern-most mountain \
in the Olympics. It's popular, but nowhere near as crowded as it would be \
if it were relocated to somewhere near North Bend.";



/** Mt. Washington
 */
 
washington = new trip();

washington.tripname = "Mount Washington";
washington.tripURL = "trips/washington.html";
washington.mapURL = "http://www.topozone.com/map.asp?lat=47.5222&lon=-123.2322&s=50&size=s";
washington.season = new season(false,false,true,true);
washington.region = "Olympics";
washington.time = new time(false,true,false);
washington.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
washington.revdate = "April 27, 2000";
washington.comments = 0;

washington.commentarray = new Array(washington.comments);

washington.basicdata = new basicdata();
washington.basicdata.seasons = "summer or fall";
washington.basicdata.loc ="Southern Olympics";
washington.basicdata.features = "steep off-trail terrain";
washington.basicdata.bestmap = "USGS Mt. Washington";
washington.basicdata.time = "all Day (because of the driving)";
washington.basicdata.jurisdiction = "Olympic National Forest";
washington.basicdata.contact = "Hoodsport Ranger Station";
washington.basicdata.special = "Rt. 1 (Olympic Climbing Guide)";

washington.summary = "This one is steep. Some fun routefinding options. Did I say steep?";



/** Commonwealth
 */
 
commonwealth = new trip();

commonwealth.tripname = "Commonwealth Basin";
commonwealth.tripURL = "trips/commonwealth.html";
commonwealth.mapURL = "http://www.topozone.com/map.asp?lat=47.4448&lon=-121.3887&s=50&size=s";
commonwealth.season = new season(true,true,false,false);
commonwealth.region = "I90";
commonwealth.time = new time(true,false,false);
commonwealth.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
commonwealth.revdate = "March 20, 2000";
commonwealth.comments = 1;

commonwealth.commentarray = new Array(commonwealth.comments);
commonwealth.commentarray[0] = new comment("Steve Fox","X","May 10, 2000");
commonwealth.commentarray[0].comtext = "Commonwealth Basin has the old PCT \
trail heading right towards it from the PCT trailhead. Turn left a couple \
hundred feet in and follow and old road which turns into trail after a while. \
Have to cross Commonwealth Creek with no bridge but easy in late summer. \
Another crossing later is easier and the trail is in excellent condition \
considering it is officially abandoned. My favorite route into the Basin; much \
better then the new PCT!";

commonwealth.basicdata = new basicdata();
commonwealth.basicdata.seasons = "winter or spring";
commonwealth.basicdata.loc ="Snoqualmie Pass";
commonwealth.basicdata.features = "easy winter access";
commonwealth.basicdata.bestmap = "USGS Snoqualmie Pass";
commonwealth.basicdata.time = "1/2 day";
commonwealth.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
commonwealth.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
commonwealth.basicdata.special = "Many climbs start from the basin.";

commonwealth.summary = "Not a climb at all, but a popular place to explore in the winter.";



/** Guye
 */
 
guye = new trip();

guye.tripname = "Guye Peak";
guye.tripURL = "trips/guye.html";
guye.mapURL = "http://www.topozone.com/map.asp?lat=47.4448&lon=-121.3887&s=50&size=s";
guye.season = new season(true,true,false,false);
guye.region = "I90";
guye.time = new time(true,false,false);
guye.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
guye.revdate = "March 20, 2000";
guye.comments = 0;

guye.commentarray = new Array(guye.comments);

guye.basicdata = new basicdata();
guye.basicdata.seasons = "winter or spring";
guye.basicdata.loc ="Snoqualmie Pass";
guye.basicdata.features = "easy winter access";
guye.basicdata.bestmap = "USGS Snoqualmie Pass";
guye.basicdata.time = "1/2 day";
guye.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
guye.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
guye.basicdata.special = 'May be combined with <a href="snoqualmie.html">Snoqualmie</a>';

guye.summary = "A great snow climb during the winter and early spring, \
with year-round road access.";



/** Red
 */
 
red = new trip();

red.tripname = "Red Mountain";
red.tripURL = "trips/red.html";
red.mapURL = "http://www.topozone.com/map.asp?lat=47.4448&lon=-121.3887&s=50&size=s";
red.season = new season(true,true,false,false);
red.region = "I90";
red.time = new time(false,true,false);
red.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
red.revdate = "April 27, 2000";
red.comments = 2;

red.commentarray = new Array(red.comments);
red.commentarray[0] = new comment("Steve Fox","My son and I did Red in the summer; not a bad scramble.","May 10, 2000");
red.commentarray[1] = new comment("Thomas Breit","I've done this a couple of times in the winter. Some pretty impressive avalanches come off the slopes of this mountain, as you can see from the broken up trees at the base. A number of people have died from avalanches on this gentle-looking mountain. If you do it in winter, stay on the ridge.","Sept 4, 2001");

red.basicdata = new basicdata();
red.basicdata.seasons = "winter or spring";
red.basicdata.loc ="Snoqualmie Pass";
red.basicdata.features = "easy winter access";
red.basicdata.bestmap = "USGS Snoqualmie Pass";
red.basicdata.time = "most of the day";
red.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
red.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
red.basicdata.special = 'Notorious for avalanches';

red.summary = "A fun snow climb during the winter and early spring, \
with year-round road access. Make sure the snow is stable.";



/** Rampart Ridge
 */
 
rampartRidge = new trip();

rampartRidge.tripname = "Rampart Ridge";
rampartRidge.tripURL = "trips/rampartRidge.html";
rampartRidge.mapURL = "http://www.topozone.com/map.asp?lat=47.41694&lon=-121.333972&s=100&size=s";
rampartRidge.season = new season(false,false,true,true);
rampartRidge.region = "EastCascades";
rampartRidge.time = new time(true,false,false);
rampartRidge.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
rampartRidge.revdate = "August 18, 2001";
rampartRidge.comments = 0;

rampartRidge.commentarray = new Array(rampartRidge.comments);

rampartRidge.basicdata = new basicdata();
rampartRidge.basicdata.seasons = "summer or fall";
rampartRidge.basicdata.loc ="Gold Creek";
rampartRidge.basicdata.features = "off trail exploring";
rampartRidge.basicdata.bestmap = "USGS Chikamin Peak";
rampartRidge.basicdata.time = "half a day";
rampartRidge.basicdata.jurisdiction = "Wenatchee National Forest";
rampartRidge.basicdata.contact = '<a href="http://www.fs.fed.us/r6/wenatchee/">Cle Elum Ranger Station</a>';
rampartRidge.basicdata.special = 'Blue huckleberries when in season';

rampartRidge.summary = "A quick trip that could be extended.";



/** Alta
 */
 
alta = new trip();

alta.tripname = "Alta Mt";
alta.tripURL = "trips/alta.html";
alta.mapURL = "http://www.topozone.com/map.asp?lat=47.41694&lon=-121.333972&s=100&size=s";
alta.season = new season(false,false,true,true);
alta.region = "EastCascades";
alta.time = new time(false,true,false);
alta.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
alta.revdate = "August 12, 2002";
alta.comments = 0;

alta.commentarray = new Array(alta.comments);

alta.basicdata = new basicdata();
alta.basicdata.seasons = "summer or fall";
alta.basicdata.loc ="Box Canyon";
alta.basicdata.features = "ridge hike";
alta.basicdata.bestmap = "USGS Chikamin Peak";
alta.basicdata.time = "3/4 day";
alta.basicdata.jurisdiction = "Wenatchee National Forest";
alta.basicdata.contact = '<a href="http://www.fs.fed.us/r6/wenatchee/">Cle Elum Ranger Station</a>';
alta.basicdata.special = 'Multiple lake options, multiple loop trip options';

alta.summary = "An outstanding viewpoint with no technical difficulties.";



/** High Box
 */
 
hibox = new trip();

hibox.tripname = "High Box";
hibox.tripURL = "trips/hibox.html";
hibox.mapURL = "http://www.topozone.com/map.asp?lat=47.414877033691695&lon=-121.29122490817369&s=50&size=s&symshow=n";
hibox.season = new season(false,false,true,true);
hibox.region = "EastCascades";
hibox.time = new time(false,true,false);
hibox.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
hibox.revdate = "August 7, 2003";
hibox.comments = 0;

hibox.commentarray = new Array(hibox.comments);

hibox.basicdata = new basicdata();
hibox.basicdata.seasons = "summer or fall";
hibox.basicdata.loc ="Box Canyon";
hibox.basicdata.features = "steep";
hibox.basicdata.bestmap = "USGS Chikamin Peak";
hibox.basicdata.time = "3/4 day";
hibox.basicdata.jurisdiction = "Wenatchee National Forest";
hibox.basicdata.contact = '<a href="http://www.fs.fed.us/r6/wenatchee/">Cle Elum Ranger Station</a>';
hibox.basicdata.special = 'Possible loop trip options';

hibox.summary = "A steep hike with no technical difficulties.";



/** Tamanos
 */
 
tamanos = new trip();

tamanos.tripname = "Tamanos Mt";
tamanos.tripURL = "trips/tamanos.html";
tamanos.mapURL = "http://www.topozone.com/map.asp?z=10&n=5191700&e=607027&s=50";
tamanos.season = new season(false,false,true,true);
tamanos.region = "Rainier";
tamanos.time = new time(false,true,false);
tamanos.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
tamanos.revdate = "August 7, 2003";
tamanos.comments = 0;

tamanos.commentarray = new Array(tamanos.comments);

tamanos.basicdata = new basicdata();
tamanos.basicdata.seasons = "summer or fall";
tamanos.basicdata.loc ="White River Entrance";
tamanos.basicdata.features = "meadows";
tamanos.basicdata.bestmap = "USGS Chinook Pass";
tamanos.basicdata.time = "3/4 day";
tamanos.basicdata.jurisdiction = "Mount Rainier National Park";
tamanos.basicdata.contact = "Mount Rainier National Park";
tamanos.basicdata.special = "Great viewpoint";

tamanos.summary = "An outstanding viewpoint with no technical difficulties.";



/** Kendall
 */
 
kendall = new trip();

kendall.tripname = "Kendall Peak";
kendall.tripURL = "trips/kendall.html";
kendall.mapURL = "http://www.topozone.com/map.asp?lat=47.4448&lon=-121.3887&s=50&size=s";
kendall.season = new season(false,true,true,true);
kendall.region = "I90";
kendall.time = new time(true,false,false);
kendall.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
kendall.revdate = "May 20, 2002";
kendall.comments = 1;

kendall.commentarray = new Array(kendall.comments);
kendall.commentarray[0] = new comment("Thomas Breit","Did this in April, or so, in snow. Basically just bushwhacked up the side of the mountain.","Sept 4, 2001");

kendall.basicdata = new basicdata();
kendall.basicdata.seasons = "whenever avalanche danger is low";
kendall.basicdata.loc ="Snoqualmie Pass";
kendall.basicdata.features = "easy access";
kendall.basicdata.bestmap = "USGS Snoqualmie Pass";
kendall.basicdata.time = "half day";
kendall.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
kendall.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
kendall.basicdata.special = 'most of trip is on the PCT';

kendall.summary = "What Katwalk?";



/** Snoqualmie
 */
 
snoqualmie = new trip();

snoqualmie.tripname = "Mount Snoqualmie";
snoqualmie.tripURL = "trips/snoqualmie.html";
snoqualmie.mapURL = "http://www.topozone.com/map.asp?lat=47.4448&lon=-121.3887&s=50&size=s";
snoqualmie.season = new season(true,true,false,false);
snoqualmie.region = "I90";
snoqualmie.time = new time(true,true,false);
snoqualmie.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
snoqualmie.revdate = "March 20, 2000";
snoqualmie.comments = 2;

snoqualmie.commentarray = new Array(snoqualmie.comments);
snoqualmie.commentarray[0] = new comment("Steve Fox","There is a great summer route up Snoqualmie Peak. Trail the whole way, starting about 50' east of the Snow Lake trail.","May 10, 2000");
snoqualmie.commentarray[1] = new comment("Thomas Breit","I've only done this in winter, when the scramble up to Cave Ridge is kind of sketchy, but the ascent up to the summit is pretty direct and safer, apparently, than in summer. Beware the impressive cornice that forms on the ridge.","Sept 4, 2001");

snoqualmie.basicdata = new basicdata();
snoqualmie.basicdata.seasons = "winter or spring";
snoqualmie.basicdata.loc ="Snoqualmie Pass";
snoqualmie.basicdata.features = "easy winter access";
snoqualmie.basicdata.bestmap = "USGS Snoqualmie Pass";
snoqualmie.basicdata.time = "3/4 day";
snoqualmie.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
snoqualmie.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
snoqualmie.basicdata.special = 'May be combined with <a href="guye.html">Guye Peak</a>';

snoqualmie.summary = "Another snow climb during the winter and early spring, \
with year-round road access.";



/** Chair
 */
 
chair = new trip();

chair.tripname = "Chair Peak";
chair.tripURL = "trips/chair.html";
chair.mapURL = "http://www.topozone.com/map.asp?lat=47.4526&lon=-121.4523&size=s&s=50";
chair.season = new season(false,false,true,true);
chair.region = "I90";
chair.time = new time(false,true,false);
chair.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
chair.revdate = "May 4, 2000";
chair.comments = 1;

chair.commentarray = new Array(chair.comments);
chair.commentarray[0] = new comment("Thomas Breit","I can't imagine doing the SE ridge route!! I had figured, since both you and Beckey recommended it, that it would be the easiest route. But the NE Buttress looked more tempting so I did that instead, and descended the SE ridge. The NE Buttress was clean, easy class 4, lots of fun, direct and easy routefinding. I descended the SE ridge, hoping it might be quicker, and to look at it, and was horrified by the mess of loose rock! It's a death trap! You can't move without sending a shower of rocks down. In fact, I dislodged an anvil-sized rock that fell and cut my rappel rope (fortunately, the cut was just a few feet from the end.)","Aug 13, 2001");

chair.basicdata = new basicdata();
chair.basicdata.seasons = "summer or fall";
chair.basicdata.loc ="Snoqualmie Pass";
chair.basicdata.features = "great summit";
chair.basicdata.bestmap = "USGS Snoqualmie Pass";
chair.basicdata.time = "all day";
chair.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
chair.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
chair.basicdata.special = 'Notorious for avalanches and loose rock';

chair.summary = "Chair is climbed year-round, but is more technical in winter and spring.";



/** Pratt
 */
 
pratt = new trip();

pratt.tripname = "Pratt Mountain";
pratt.tripURL = "trips/pratt.html";
pratt.mapURL = "http://www.topozone.com/map.asp?lat=47.4129&lon=-121.525&s=50&size=s";
pratt.season = new season(true,false,false,false);
pratt.region = "I90";
pratt.time = new time(false,true,false);
pratt.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
pratt.revdate = "June 20, 2000";
pratt.comments = 0;

pratt.commentarray = new Array(pratt.comments);

pratt.basicdata = new basicdata();
pratt.basicdata.seasons = "any time really, but try it in winter";
pratt.basicdata.loc ="Snoqualmie Pass";
pratt.basicdata.features = "snow ridge";
pratt.basicdata.bestmap = "USGS Bandera";
pratt.basicdata.time = "all day";
pratt.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
pratt.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
pratt.basicdata.special = 'snowshoes';

pratt.summary = "Pratt can be climbed year-round, but is simply a boulder pile in summer.";



/** Kaleetan
 */
 
kaleetan = new trip();

kaleetan.tripname = "Kaleetan Mountain";
kaleetan.tripURL = "trips/kaleetan.html";
kaleetan.mapURL = "http://www.topozone.com/map.asp?lat=47.44494876516907&lon=-121.47891841027345&s=50&size=s&symshow=n";
kaleetan.season = new season(false,true,true,true);
kaleetan.region = "I90";
kaleetan.time = new time(false,true,false);
kaleetan.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
kaleetan.revdate = "Aug 13, 2001";
kaleetan.comments = 1;

kaleetan.commentarray = new Array(kaleetan.comments);
kaleetan.commentarray[0] = new comment("Thomas Breit","A long approach, up through Melaqua lake. (Melaqua is the Chinook word for 'mosquito'.) The scramble to the peak, up the chimney, isn't as dire as it looks from below. Be careful on the descent, though; I did this on a heavily overcast day, got totally socked in on the summit, followed game trails that I thought were hiking trails, and ended up a thousand feet down in the next valley over! Had to climb back up and do the descent all over.","Sept 4, 2001");

kaleetan.basicdata = new basicdata();
kaleetan.basicdata.seasons = "probably climbed all year long";
kaleetan.basicdata.loc ="Snoqualmie Pass";
kaleetan.basicdata.features = "good views";
kaleetan.basicdata.bestmap = "USGS Snoqualmie Pass";
kaleetan.basicdata.time = "all day";
kaleetan.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
kaleetan.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
kaleetan.basicdata.special = 'some loop trip options';

kaleetan.summary = "Interesting options, a variety of climbing, and great location.";



/** Bandera
 */
 
bandera = new trip();

bandera.tripname = "Bandera Mountain";
bandera.tripURL = "trips/bandera.html";
bandera.mapURL = "http://www.topozone.com/map.asp?lat=47.4129&lon=-121.525&s=50&size=s";
bandera.season = new season(true,true,true,true);
bandera.region = "I90";
bandera.time = new time(true,false,false);
bandera.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
bandera.revdate = "June 20, 2000";
bandera.comments = 0;

bandera.commentarray = new Array(bandera.comments);

bandera.basicdata = new basicdata();
bandera.basicdata.seasons = "any season";
bandera.basicdata.loc ="Snoqualmie Pass";
bandera.basicdata.features = "long summit ridge";
bandera.basicdata.bestmap = "USGS Bandera";
bandera.basicdata.time = "half day";
bandera.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
bandera.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
bandera.basicdata.special = 'other terrain to explore nearby';

bandera.summary = "A trail to the false summit, and easy ridge traverse to the true summit. Options for cross-country travel.";



/** Vesper
 */
 
vesper = new trip();

vesper.tripname = "Vesper Peak";
vesper.tripURL = "trips/vesper.html";
vesper.mapURL = "http://www.topozone.com/map.asp?lat=48.0263&lon=-121.4879&s=50&size=s";
vesper.season = new season(false,true,true,true);
vesper.region = "MtnLoop";
vesper.time = new time(true,true,false);
vesper.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
vesper.revdate = "March 20, 2000";
vesper.comments = 2;

vesper.commentarray = new Array(vesper.comments);

vesper.commentarray[0] = new comment("Steve Fox","Vesper can have a difficult stream crossing earlier in the year than you went.","May 10, 2000");
vesper.commentarray[1] = new comment("Thomas Breit","Did this in early July. Routefinding was pretty easy, and the scramble up the clean granite was lots of fun. There's a tarn there in the bowl formed by Vesper and Sperry, which in July was still mostly frozen.","Sept 4, 2001");

vesper.basicdata = new basicdata();
vesper.basicdata.seasons = "almost any time of year";
vesper.basicdata.loc ="Mountain Loop Highway";
vesper.basicdata.features = "glacial sculpting";
vesper.basicdata.bestmap = "USGS Silverton<br>USGS Bedal";
vesper.basicdata.time = "1/2 day to all day";
vesper.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
vesper.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Verlot Ranger Station</a>';
vesper.basicdata.special = 'May be combined with <a href="sperry.html">Sperry</a>';

vesper.summary = "A fun scramble in interesting terrain.";



/** Hidden Lake
 */
 
hiddenLake = new trip();

hiddenLake.tripname = "Hidden Lake Peak";
hiddenLake.tripURL = "trips/hidden.html";
hiddenLake.mapURL = "http://www.topozone.com/map.asp?lat=48.5092&lon=-121.2027&s=50&size=s";
hiddenLake.season = new season(false,false,true,true);
hiddenLake.region = "NorthCascades";
hiddenLake.time = new time(false,true,false);
hiddenLake.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
hiddenLake.revdate = "March 20, 2000";
hiddenLake.comments = 0;

hiddenLake.commentarray = new Array(hiddenLake.comments);

hiddenLake.basicdata = new basicdata();
hiddenLake.basicdata.seasons = "summer or fall";
hiddenLake.basicdata.loc ="Cascade River";
hiddenLake.basicdata.features = "lookout and views";
hiddenLake.basicdata.bestmap = "USGS Eldorado and USGS Sonny Boy Lake";
hiddenLake.basicdata.time = "3/4 day to all day (long drive)";
hiddenLake.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
hiddenLake.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Sedro Woolley Ranger Station</a>';
hiddenLake.basicdata.special = 'Could stay overnight at lookout or follow ridge out to the Triad';

hiddenLake.summary = "Great views into the Cascade River area. Lookout.";



/** Boston Basin
 */
 
bostonBasin = new trip();

bostonBasin.tripname = "Boston Basin";
bostonBasin.tripURL = "trips/bostonBasin.html";
bostonBasin.mapURL = "http://www.topozone.com/map.asp?lat=48.5&lon=-121.06&s=50&size=s";
bostonBasin.season = new season(false,false,true,true);
bostonBasin.region = "NorthCascades";
bostonBasin.time = new time(false,true,false);
bostonBasin.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
bostonBasin.revdate = "July 30, 2002";
bostonBasin.comments = 0;

bostonBasin.commentarray = new Array(bostonBasin.comments);

bostonBasin.basicdata = new basicdata();
bostonBasin.basicdata.seasons = "summer or fall";
bostonBasin.basicdata.loc ="Cascade River";
bostonBasin.basicdata.features = "views and slabs";
bostonBasin.basicdata.bestmap = "USGS Cascade Pass and Forbidden";
bostonBasin.basicdata.time = "all day (long drive)";
bostonBasin.basicdata.jurisdiction = "North Cascades National Park";
bostonBasin.basicdata.contact = 'Marblemount Ranger Station';
bostonBasin.basicdata.special = 'Need a permit to stay overnight';

bostonBasin.summary = "Open slabs, lots of meltwater, nestled at the base of peaks.";



/** Pinnacle/Plummer
 */
 
pinnacle = new trip();

pinnacle.tripname = "Pinnacle and Plummer Peaks";
pinnacle.tripURL = "trips/pinnacle.html";
pinnacle.mapURL = "http://www.topozone.com/map.asp?lat=46.7652&lon=-121.7344&size=s&s=50";
pinnacle.season = new season(false,true,true,true);
pinnacle.region = "Rainier";
pinnacle.time = new time(true,false,false);
pinnacle.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
pinnacle.revdate = "March 27, 2000";
pinnacle.comments = 0;

pinnacle.commentarray = new Array(pinnacle.comments);

pinnacle.basicdata = new basicdata();
pinnacle.basicdata.seasons = "accessible any time, but recommended in September";
pinnacle.basicdata.loc ="Paradise";
pinnacle.basicdata.features = "views";
pinnacle.basicdata.bestmap = "USGS Mount Rainier East";
pinnacle.basicdata.time = "short 1/2 day";
pinnacle.basicdata.jurisdiction = "Mount Rainier National Park";
pinnacle.basicdata.contact = "Mount Rainier National Park";
pinnacle.basicdata.special = 'Can also climb Castle';

pinnacle.summary = "The best viewpoint for the south side of Mt. Rainier.";



/** Goat Island
 */
 
goatIsland = new trip();

goatIsland.tripname = "Goat Island Mountain";
goatIsland.tripURL = "trips/goatIsland.html";
goatIsland.mapURL = "http://www.topozone.com/map.asp?lat=46.8735&lon=-121.6248&s=50&size=s";
goatIsland.season = new season(false,true,true,true);
goatIsland.region = "Rainier";
goatIsland.time = new time(false,true,false);
goatIsland.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
goatIsland.revdate = "July 25, 2000";
goatIsland.comments = 0;

goatIsland.commentarray = new Array(goatIsland.comments);

goatIsland.basicdata = new basicdata();
goatIsland.basicdata.seasons = "accessible between early summer and late fall";
goatIsland.basicdata.loc ="Sunrise";
goatIsland.basicdata.features = "views";
goatIsland.basicdata.bestmap = "USGS Mount Rainier East<br>USGS Sunrise";
goatIsland.basicdata.time = "day";
goatIsland.basicdata.jurisdiction = "Mount Rainier National Park";
goatIsland.basicdata.contact = "Mount Rainier National Park";
goatIsland.basicdata.special = 'brush up on your routefinding';

goatIsland.summary = "A great viewpoint for the northeast side of Mt. Rainier.";



/** Sunrise
 */
 
sunrise = new trip();

sunrise.tripname = "Sunrise area";
sunrise.tripURL = "trips/sunrise.html";
sunrise.mapURL = "http://www.topozone.com/map.asp?lat=46.9286&lon=-121.6498&size=s&s=100";
sunrise.season = new season(false,true,true,true);
sunrise.region = "Rainier";
sunrise.time = new time(true,true,false);
sunrise.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
sunrise.revdate = "October 16, 2000";
sunrise.comments = 0;

sunrise.commentarray = new Array(sunrise.comments);

sunrise.basicdata = new basicdata();
sunrise.basicdata.seasons = "accessible by road late summer to late fall";
sunrise.basicdata.loc ="Sunrise";
sunrise.basicdata.features = "views";
sunrise.basicdata.bestmap = "USGS Sunrise";
sunrise.basicdata.time = "day";
sunrise.basicdata.jurisdiction = "Mount Rainier National Park";
sunrise.basicdata.contact = "Mount Rainier National Park";
sunrise.basicdata.special = 'expect crowds';

sunrise.summary = "Many possible destinations, most of which are simple hikes.";



/** Hurricane Hill
 */
 
hurricaneHill = new trip();

hurricaneHill.tripname = "Hurricane Hill";
hurricaneHill.tripURL = "trips/hurricane.html";
hurricaneHill.mapURL = "http://www.topozone.com/map.asp?lat=47.9767&lon=-123.5004&s=50&size=s";
hurricaneHill.season = new season(true,false,false,false);
hurricaneHill.region = "Olympics";
hurricaneHill.time = new time(false,true,false);
hurricaneHill.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
hurricaneHill.revdate = "March 27, 2000";
hurricaneHill.comments = 0;

hurricaneHill.commentarray = new Array(hurricaneHill.comments);

hurricaneHill.basicdata = new basicdata();
hurricaneHill.basicdata.seasons = "only a scramble in the winter";
hurricaneHill.basicdata.loc ="Hurricane Ridge";
hurricaneHill.basicdata.features = "views";
hurricaneHill.basicdata.bestmap = "USGS ?";
hurricaneHill.basicdata.time = "all day because of ferries and driving";
hurricaneHill.basicdata.jurisdiction = "Olympic National Park";
hurricaneHill.basicdata.contact = "Olympic National Park";
hurricaneHill.basicdata.special = 'snowshoe or telemark';

hurricaneHill.summary = "A great viewpoint when the weather is good, \
but as the name implies, the weather is rarely good.";



/** Mt. Angeles
 */
 
angeles = new trip();

angeles.tripname = "Mount Angeles";
angeles.tripURL = "trips/angeles.html";
angeles.mapURL = "http://www.topozone.com/map.asp?lat=47.98&lon=-123.48&s=100&size=s&symshow=n";
angeles.season = new season(false,false,true,true);
angeles.region = "Olympics";
angeles.time = new time(false,true,false);
angeles.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
angeles.revdate = "Sept 12, 2002";
angeles.comments = 0;

angeles.commentarray = new Array(angeles.comments);

angeles.basicdata = new basicdata();
angeles.basicdata.seasons = "year-round access";
angeles.basicdata.loc ="Hurricane Ridge";
angeles.basicdata.features = "views";
angeles.basicdata.bestmap = "USGS Mount Angeles";
angeles.basicdata.time = "all day because of ferries and driving";
angeles.basicdata.jurisdiction = "Olympic National Park";
angeles.basicdata.contact = "Olympic National Park";
angeles.basicdata.special = 'multiple approach and route choices';

angeles.summary = "A great viewpoint when the weather is good, \
some interesting pillow lava rock.";



/** Daniel
 */
 
daniel = new trip();

daniel.tripname = "Mount Daniel";
daniel.tripURL = "trips/daniel.html";
daniel.mapURL = "http://www.topozone.com/map.asp?lat=47.5472&lon=-121.1287&size=s&s=100";
daniel.season = new season(false,false,false,true);
daniel.region = "EastCascades";
daniel.time = new time(false,false,true);
daniel.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
daniel.revdate = "April 4, 2000";
daniel.comments = 3;

daniel.commentarray = new Array(daniel.comments);
daniel.commentarray[0] = new comment("Mike Adamson","The upper basin above Peggy (slightly below the Hyas glacier) provides a relatively bug free bivvy. There is also a great stream that provides water in the basin. I have done this whole climb (not your exact description) car to car in seven hours. It is therefore not really a long day unless you are out of shape or inexperienced.","Oct 4, 2000");
daniel.commentarray[1] = new comment("Thomas Breit","A fairly long approach hike, but a very beautiful area. Lots of tempting subalpine lakes. This is the only hike or climb I've been on where I got buzzed by military jets; two F-14s passed about a hundred feet overhead. We did this in early September 2000, so bugs were non-existent.","Sept 4, 2001");
daniel.commentarray[2] = new comment("John Cain","As an older climber [45], my taste for more technical routes has, naturally I suppose, begun to decline a bit. But I still really like to move quickly over easy ground, getting a good aerobic workout and taking in nice views. Scramble peaks are perfect for this, and Daniel is one of the best low-angle climbs I've found. I've done this peak three times so far this season, and I plan to return a few more times before the big snows. If you are a runner or a fast hiker, don't be put off by trip reports that warn of vast distances and multi-day commitments. Once you've done the requisite initial route-finding trip and become familiar with the ascent route, just strap your lightest axe to a small hydration pack, lace up a pair of lightly-gaitored trail runners, and take off! A friend and I did the West Summit yesterday in a car-to-car time of six and a half hours at a relatively relaxed pace--a fast hike, not a run. Even at this pace, we had time for ample breaks and a nap at the summit. Daniel has it all: a pretty and aerobic approach trail, a classic glacial valley, endless scrambling opportunities, easy snow slope traverses, and an airy and spectacular ridge walk between sub-summits -- a valuable resource for the alpine trail runner of fast hiker.","Aug 15, 2003");

daniel.basicdata = new basicdata();
daniel.basicdata.seasons = "mid-September is the best";
daniel.basicdata.loc ="Salmon La Sac";
daniel.basicdata.features = "views, choice of routes";
daniel.basicdata.bestmap = "USGS Mt. Daniel";
daniel.basicdata.time = "very long day or overnight";
daniel.basicdata.jurisdiction = "Wenatchee National Forest";
daniel.basicdata.contact = "Cle Elum Ranger Station";
daniel.basicdata.special = 'Could also climb Cathedral Rock';

daniel.summary = "The highest point in King County.";




/** South Ingalls
 */
 
southIngalls = new trip();

southIngalls.tripname = "South Ingalls Peak";
southIngalls.tripURL = "trips/southingalls.html";
southIngalls.mapURL = "http://www.topozone.com/map.asp?lat=47.4461&lon=-120.9463&size=s&s=50";
southIngalls.season = new season(false,true,true,true);
southIngalls.region = "EastCascades";
southIngalls.time = new time(false,true,false);
southIngalls.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
southIngalls.revdate = "April 4, 2000";
southIngalls.comments = 0;

southIngalls.commentarray = new Array(southIngalls.comments);

southIngalls.basicdata = new basicdata();
southIngalls.basicdata.seasons = "any time you can drive to the trailhead";
southIngalls.basicdata.loc ="North Fork Teanaway";
southIngalls.basicdata.features = "views";
southIngalls.basicdata.bestmap = "USGS Mt. Stuart";
southIngalls.basicdata.time = "long day";
southIngalls.basicdata.jurisdiction = "Wenatchee National Forest";
southIngalls.basicdata.contact = "Cle Elum Ranger Station";
southIngalls.basicdata.special = 'No dogs allowed';

southIngalls.summary = "A scrambling alternative to North Ingalls Peak.";



/** Saint Helens
 */
 
sthelens = new trip();

sthelens.tripname = "Mount Saint Helens";
sthelens.tripURL = "trips/sthelens.html";
sthelens.mapURL = "http://www.topozone.com/map.asp?lat=46.1703&lon=-122.1915&s=100&size=s";
sthelens.season = new season(true,false,false,false);
sthelens.region = "SouthCascades";
sthelens.time = new time(false,false,true);
sthelens.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
sthelens.revdate = "April 4, 2000";
sthelens.comments = 1;

sthelens.commentarray = new Array(sthelens.comments);
sthelens.commentarray[0] = new comment("Thomas Breit","If it weren't a volcano, it wouldn't be worth the effort. From Seattle it's a four hour drive, getting the permits is a pain, and it's not a particularly dramatic climb. It's out on its own, so there isn't a lot of scenery. Still, if you're old enough to remember the eruption, you'll probably find the views from the rim pretty interesting. The first half is through the trees, the second half has some interesting scrambling up rocks, and parallels the remains of the Shoestring Glacier, which before the eruption was unique in the world for being so long and narrow.","Sept 4, 2001");

sthelens.basicdata = new basicdata();
sthelens.basicdata.seasons = "try it in winter";
sthelens.basicdata.loc ="South Cascades";
sthelens.basicdata.features = "volcanic damage";
sthelens.basicdata.bestmap = "USGS Mt. Saint Helens";
sthelens.basicdata.time = "very long day or overnight";
sthelens.basicdata.jurisdiction = "Gifford Pinchot National Forest";
sthelens.basicdata.contact = "";
sthelens.basicdata.special = '';

sthelens.summary = "May 18, 1980. What more is there to say?";



/** Watson
 */
 
watson = new trip();

watson.tripname = "Mount Watson";
watson.tripURL = "trips/watson.html";
watson.mapURL = "http://www.topozone.com/map.asp?lat=48.667&lon=-121.6128&s=50&size=s";
watson.season = new season(false,false,true,false);
watson.region = "NorthCascades";
watson.time = new time(false,true,false);
watson.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
watson.revdate = "April 6, 2000";
watson.comments = 0;

watson.commentarray = new Array(watson.comments);

watson.basicdata = new basicdata();
watson.basicdata.seasons = "I've only been in summer";
watson.basicdata.loc ="Baker Lake";
watson.basicdata.features = "views, interesting climbing";
watson.basicdata.bestmap = "USGS Bacon Peak";
watson.basicdata.time = "day";
watson.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
watson.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Sedro Woolley Ranger Station</a>';
watson.basicdata.special = 'snow is good';

watson.summary = "A fun trip in the North Cascades.";



/** Ruth
 */
 
ruth = new trip();

ruth.tripname = "Mount Ruth";
ruth.tripURL = "trips/ruth.html";
ruth.mapURL = "http://www.topozone.com/map.asp?lat=48.8875&lon=-121.5863&s=100&size=s";
ruth.season = new season(false,false,true,false);
ruth.region = "NorthCascades";
ruth.time = new time(false,true,false);
ruth.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
ruth.revdate = "May 4, 2000";
ruth.comments = 0;

ruth.commentarray = new Array(ruth.comments);

ruth.basicdata = new basicdata();
ruth.basicdata.seasons = "I've only been in summer";
ruth.basicdata.loc ="Hannegan Pass";
ruth.basicdata.features = "views";
ruth.basicdata.bestmap = "USGS Mount Shuksan";
ruth.basicdata.time = "day";
ruth.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
ruth.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Glacier Ranger Station</a>';
ruth.basicdata.special = 'can be combined with Icy Peak';

ruth.summary = "Check out the Price Glacier.";



/** Robin Lakes
 */
 
robin = new trip();

robin.tripname = "Robin Lakes";
robin.tripURL = "trips/robin.html";
robin.mapURL = "http://www.topozone.com/map.asp?lat=47.5736&lon=-121.0735&s=100&size=s";
robin.season = new season(false,false,true,true);
robin.region = "EastCascades";
robin.time = new time(false,true,true);
robin.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
robin.revdate = "April 10, 2000";
robin.comments = 0;

robin.commentarray = new Array(robin.comments);

robin.basicdata = new basicdata();
robin.basicdata.seasons = "summer or fall";
robin.basicdata.loc ="Salmon La Sac";
robin.basicdata.features = "alpine setting, glacial slabs";
robin.basicdata.bestmap = "USGS Cradle";
robin.basicdata.time = "day or overnight";
robin.basicdata.jurisdiction = "Wenatchee National Forest";
robin.basicdata.contact = "Cle Elum Ranger Station";
robin.basicdata.special = 'Can climb Granite and probably Trico mountains';

robin.summary = "Expect a crowd.";



/** Surprise Mountain
 */
 
surprise = new trip();

surprise.tripname = "Surprise Mountain";
surprise.tripURL = "trips/surprise.html";
surprise.mapURL = "http://www.topozone.com/map.asp?lat=47.6742&lon=-121.1425&s=100&size=s";
surprise.season = new season(false,false,true,true);
surprise.region = "EastCascades";
surprise.time = new time(false,true,false);
surprise.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
surprise.revdate = "April 10, 2000";
surprise.comments = 0;

surprise.commentarray = new Array(surprise.comments);

surprise.basicdata = new basicdata();
surprise.basicdata.seasons = "summer or fall";
surprise.basicdata.loc ="Scenic";
surprise.basicdata.features = "lookout";
surprise.basicdata.bestmap = "USGS Scenic";
surprise.basicdata.time = "day (or overnight)";
surprise.basicdata.jurisdiction = "Wenatchee National Forest";
surprise.basicdata.contact = "Cle Elum Ranger Station";
surprise.basicdata.special = 'Many other possible destinations nearby';

surprise.summary = "Old lookout site just off of old Cascade Crest trail.";


/** Hessong Rock
 */
 
hessong = new trip();

hessong.tripname = "Hessong Rock";
hessong.tripURL = "trips/hessong.html";
hessong.mapURL = "http://www.topozone.com/map.asp?lat=46.9306&lon=-121.8367&s=50&size=s";
hessong.season = new season(false,false,true,true);
hessong.region = "Rainier";
hessong.time = new time(true,false,false);
hessong.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
hessong.revdate = "April 12, 2000";
hessong.comments = 0;

hessong.commentarray = new Array(hessong.comments);

hessong.basicdata = new basicdata();
hessong.basicdata.seasons = "accessible any time that Spray Park is";
hessong.basicdata.loc ="Carbon River";
hessong.basicdata.features = "views";
hessong.basicdata.bestmap = "USGS Mowich Lake";
hessong.basicdata.time = "short 1/2 day";
hessong.basicdata.jurisdiction = "Mount Rainier National Park";
hessong.basicdata.contact = "Mount Rainier National Park";
hessong.basicdata.special = 'Can also climb Mount Pleasant, avoid mosquito season';

hessong.summary = "The good viewpoint in the popular Spray Park.";



/** Fay Peak
 */
 
fay = new trip();

fay.tripname = "Fay Peak";
fay.tripURL = "trips/fay.html";
fay.mapURL = "http://www.topozone.com/map.asp?lat=46.9306&lon=-121.8367&s=50&size=s";
fay.season = new season(false,false,true,true);
fay.region = "Rainier";
fay.time = new time(true,false,false);
fay.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
fay.revdate = "Aug 1, 2000";
fay.comments = 0;

fay.commentarray = new Array(fay.comments);

fay.basicdata = new basicdata();
fay.basicdata.seasons = "accessible any time that Spray Park is";
fay.basicdata.loc ="Carbon River";
fay.basicdata.features = "scenery";
fay.basicdata.bestmap = "USGS Mowich Lake";
fay.basicdata.time = "1/2 day";
fay.basicdata.jurisdiction = "Mount Rainier National Park";
fay.basicdata.contact = "Mount Rainier National Park";
fay.basicdata.special = 'Can also climb First Mother Mountain, Castle, or traverse to Pleasant, Hessong, and Spray Park';

fay.summary = "Popular destination; named after the first woman to climb Rainier.";



/** Forgotten
 */
 
forgotten = new trip();

forgotten.tripname = "Mount Forgotten";
forgotten.tripURL = "trips/forgotten.html";
forgotten.mapURL = "http://www.topozone.com/map.asp?lat=48.0713&lon=-121.4439&s=100&size=s";
forgotten.season = new season(false,false,true,true);
forgotten.region = "MtnLoop";
forgotten.time = new time(false,true,false);
forgotten.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
forgotten.revdate = "April 12, 2000";
forgotten.comments = 1;

forgotten.commentarray = new Array(forgotten.comments);
forgotten.commentarray[0] = new comment("Thomas Breit","I did this in winter, and it was quite a lot of fun. There were a number of people that headed up to the meadows, but I was the only one that went up to the summit (with my dog Max). On the rocks on the summit was a bunch of purple mountain saxifrage. I'm always impressed at the hardiness of mountain flowers.","Sept 4, 2001");

forgotten.basicdata = new basicdata();
forgotten.basicdata.seasons = "summer or fall";
forgotten.basicdata.loc ="Mountain Loop Highway";
forgotten.basicdata.features = "very nice summit";
forgotten.basicdata.bestmap = "USGS Bedal";
forgotten.basicdata.time = "most of the day";
forgotten.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
forgotten.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Verlot Ranger Station</a>';
forgotten.basicdata.special = 'May be combined with Stillaguamish';

forgotten.summary = "An interesting route with a very appealing summit.";



/** Pugh
 */
 
pugh = new trip();

pugh.tripname = "Mount Pugh";
pugh.tripURL = "trips/pugh.html";
pugh.mapURL = "http://www.topozone.com/map.asp?lat=48.135456&lon=-121.37&s=100&size=s";
pugh.season = new season(false,false,true,true);
pugh.region = "MtnLoop";
pugh.time = new time(false,true,false);
pugh.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
pugh.revdate = "October 15, 2002";
pugh.comments = 0;

pugh.commentarray = new Array(pugh.comments);

pugh.basicdata = new basicdata();
pugh.basicdata.seasons = "summer or fall";
pugh.basicdata.loc ="Mountain Loop Highway";
pugh.basicdata.features = "easy but exposed airy ridge";
pugh.basicdata.bestmap = "USGS Pugh Mountain, White Chuck";
pugh.basicdata.time = "most of the day";
pugh.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
pugh.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Darrington Ranger Station</a>';
pugh.basicdata.special = 'Great viewpoint';

pugh.summary = "Former lookout site has great view of Glacier Peak.";



/** Stillaguamish
 */
 
stillaguamish = new trip();

stillaguamish.tripname = "Mount Stillaguamish";
stillaguamish.tripURL = "trips/stillaguamish.html";
stillaguamish.mapURL = "http://www.topozone.com/map.asp?lat=48.0713&lon=-121.4439&s=100&size=s";
stillaguamish.season = new season(false,false,true,true);
stillaguamish.region = "MtnLoop";
stillaguamish.time = new time(false,true,false);
stillaguamish.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
stillaguamish.revdate = "April 12, 2000";
stillaguamish.comments = 0;

stillaguamish.commentarray = new Array(stillaguamish.comments);

stillaguamish.basicdata = new basicdata();
stillaguamish.basicdata.seasons = "summer or fall";
stillaguamish.basicdata.loc ="Mountain Loop Highway";
stillaguamish.basicdata.features = "open alpine ridge";
stillaguamish.basicdata.bestmap = "USGS Bedal";
stillaguamish.basicdata.time = "most of the day";
stillaguamish.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
stillaguamish.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Verlot Ranger Station</a>';
stillaguamish.basicdata.special = 'May be combined with Forgotten';

stillaguamish.summary = "A long, open, alpine traverse ending on a broad summit.";



/** Three Fingers
 */
 
threeFingers = new trip();

threeFingers.tripname = "Three Fingers";
threeFingers.tripURL = "trips/threeFingers.html";
threeFingers.mapURL = "http://www.topozone.com/map.asp?lat=48.1572&lon=-121.7145&size=s&s=100";
threeFingers.season = new season(false,false,true,true);
threeFingers.region = "MtnLoop";
threeFingers.time = new time(false,true,true);
threeFingers.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
threeFingers.revdate = "April 21, 2000";
threeFingers.comments = 1;

threeFingers.commentarray = new Array(threeFingers.comments);
threeFingers.commentarray[0] = new comment("Thomas Breit","My recollection of this hike is marred by the bugs. The worst experience with biting flies I've ever had! I never stopped once, from the car to the lookout, not even to get food out of my pack! Rested on the lookout for half an hour, then descended without a break. Bring powerful insect repellant, or go outside the bug season. Goat Flats would be a beautiful place to camp, I think, if not for the flies and mosquitoes. One tricky part of the approach; about an hour along, you get to a clearing, called Saddle Lake (more of a bog.) Here the trail swerves abruptly to the left, just at the entrance to the clearing. I was here first with four guys, and we ended up wandering around for twenty minutes before we found the trail again.","Sept 4, 2001");

threeFingers.basicdata = new basicdata();
threeFingers.basicdata.seasons = "when the road is open";
threeFingers.basicdata.loc ="Mountain Loop Highway";
threeFingers.basicdata.features = "lookout";
threeFingers.basicdata.bestmap = "USGS Whitehorse Mountain";
threeFingers.basicdata.time = "very long day";
threeFingers.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
threeFingers.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Verlot Ranger Station</a>';
threeFingers.basicdata.special = 'can be icy';

threeFingers.summary = "A classic.";


/** Dickerman
 */
 
dickerman = new trip();

dickerman.tripname = "Mount Dickerman";
dickerman.tripURL = "trips/dickerman.html";
dickerman.mapURL = "http://www.topozone.com/map.asp?lat=48.0713&lon=-121.4439&s=100&size=s";
dickerman.season = new season(false,false,true,true);
dickerman.region = "MtnLoop";
dickerman.time = new time(true,false,false);
dickerman.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
dickerman.revdate = "April 12, 2000";
dickerman.comments = 2;

dickerman.commentarray = new Array(dickerman.comments);
dickerman.commentarray[0] = new comment("Steve Fox","Dickerman can be done when the road is closed but it adds eight miles round trip.","May 10, 2000");
dickerman.commentarray[1] = new comment("Thomas Breit","Notable mostly for the blueberry crop in the autumn. It's a fairly stiff hike up through a forested trail, with good views from the summit.","Sept 4, 2001");

dickerman.basicdata = new basicdata();
dickerman.basicdata.seasons = "the road is closed in winter";
dickerman.basicdata.loc ="Mountain Loop Highway";
dickerman.basicdata.features = "forest trail and open summit";
dickerman.basicdata.bestmap = "USGS Bedal";
dickerman.basicdata.time = "1/2 day";
dickerman.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
dickerman.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Verlot Ranger Station</a>';
dickerman.basicdata.special = 'can be icy in spring';

dickerman.summary = "The Mount Si of the Mountain Loop, but more interesting than Si.";



/** Middle Higgins
 */
 
middleHiggins = new trip();

middleHiggins.tripname = "Middle Higgins";
middleHiggins.tripURL = "trips/middleHiggins.html";
middleHiggins.mapURL = "http://www.topozone.com/map.asp?lat=48.3149&lon=-121.7885&s=50&size=s";
middleHiggins.season = new season(false,false,true,false);
middleHiggins.region = "MtnLoop";
middleHiggins.time = new time(false,true,false);
middleHiggins.author = new author('<a href="../authors/mike.html">Mike Garrison</a>',"mikegarrison@alum.mit.edu");
middleHiggins.revdate = "Jul 20, 2000";
middleHiggins.comments = 1;

middleHiggins.commentarray = new Array(middleHiggins.comments);
middleHiggins.commentarray[0] = new comment("Fred Beavon","This peak's official name is Skadulgwas Peak.","Sept 28, 2001");

middleHiggins.basicdata = new basicdata();
middleHiggins.basicdata.seasons = "early summer";
middleHiggins.basicdata.loc ="Hwy 530 near Darrington";
middleHiggins.basicdata.features = "technically easy, routefinding and exposure";
middleHiggins.basicdata.bestmap = "USGS Mount Higgins";
middleHiggins.basicdata.time = "all day";
middleHiggins.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
middleHiggins.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Darrington Ranger Station</a>';
middleHiggins.basicdata.special = 'stream can be difficult to cross in spring';

middleHiggins.summary = "Fun, not crowded, and great views.";




/** TRIPS BY MATT **/

/** Web
 */
 
web = new trip();

web.tripname = "Web Mountain";
web.tripURL = "trips/web.html";
web.mapURL = "http://www.topozone.com/map.asp?lat=47.4404&lon=-121.5872&s=50&size=s";
web.season = new season(false,true,false,false);
web.region = "I90";
web.time = new time(true,true,false);
web.author = new author("Matt Robertson","mandm@gte.net");
web.revdate = "May 10, 2000";
web.comments = 0;

web.commentarray = new Array(web.comments);

web.basicdata = new basicdata();
web.basicdata.seasons = "spring is fun, but should be doable all year";
web.basicdata.loc ="I-90";
web.basicdata.features = "views, solitude";
web.basicdata.bestmap = "USGS Bandera";
web.basicdata.time = "1/2 day to all day";
web.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
web.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
web.basicdata.special = "Don't park inside the gate that gets locked at 4:00!";

web.summary = "A trail has been roughed in, but this is more fun when there's snow. A side trip to Dirty Harry's Balcony is easily added.";



/** Tomyhoi
 */
 
tomyhoi = new trip();

tomyhoi.tripname = "Tomyhoi Peak";
tomyhoi.tripURL = "trips/tomyhoi.html";
tomyhoi.mapURL = "http://www.topozone.com/map.asp?lat=48.9702&lon=-121.7203&s=100&size=s";
tomyhoi.season = new season(false,false,true,true);
tomyhoi.region = "NorthCascades";
tomyhoi.time = new time(false,false,true);
tomyhoi.author = new author("Matt Robertson","mandm@gte.net");
tomyhoi.revdate = "May 14, 2000";
tomyhoi.comments = 0;

tomyhoi.commentarray = new Array(tomyhoi.comments);

tomyhoi.basicdata = new basicdata();
tomyhoi.basicdata.seasons = "summer, fall";
tomyhoi.basicdata.loc ="North Cascades";
tomyhoi.basicdata.features = "views, mining relics, wildflowers, more views";
tomyhoi.basicdata.bestmap = "USGS Larrabee";
tomyhoi.basicdata.time = "2 days";
tomyhoi.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
tomyhoi.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Glacier Ranger Station</a>';
tomyhoi.basicdata.special = "Can be combined with Yellow Aster Butte";

tomyhoi.summary = "Views north into the Fraser Valley, east \
to the Canadian and American Border Peaks, and south to Baker and \
Shuksan. Sumptuous wildflowers in season. Mining relics. Great mix of terrain.";



/** North Ridge of Adams
 */
 
adamsNorthRidge = new trip();

adamsNorthRidge.tripname = "North Ridge of Mount Adams";
adamsNorthRidge.tripURL = "trips/adamsNorthRidge.html";
adamsNorthRidge.mapURL = "http://www.topozone.com/map.asp?lat=46.2181&lon=-121.5056&s=50&size=m";
adamsNorthRidge.season = new season(false,true,true,false);
adamsNorthRidge.region = "SouthCascades";
adamsNorthRidge.time = new time(false,false,true);
adamsNorthRidge.author = new author("Matt Robertson","mandm@gte.net");
adamsNorthRidge.revdate = "May 30, 2000";
adamsNorthRidge.comments = 1;

adamsNorthRidge.commentarray = new Array(adamsNorthRidge.comments);
adamsNorthRidge.commentarray[0] = new comment("Thomas Breit","Descended this July 1, 2001, after climbing Adams Glacier. Kind of a slag heap, with some impressive exposure. My evaluation is, if you're going to do this, do it as early in the year as possible, when it's cold and the stuff is sort of frozen together, and get an early start. There are tent sites on the base of the ridge; you can save an hour or so on the ascent by camping up there. We ran into the president of Cascade Designs up there, a very interesting guy, and he said that the approach via Divide Creek is shorter and involves less altitude gain. The map appears to bear this out, but I haven't tried it.","Sept 4, 2001");

adamsNorthRidge.basicdata = new basicdata();
adamsNorthRidge.basicdata.seasons = "late spring and early summer, depending on the snow";
adamsNorthRidge.basicdata.loc ="South Cascades";
adamsNorthRidge.basicdata.features = "views, solitude";
adamsNorthRidge.basicdata.bestmap = "USGS Trout Lake and King Mountain";
adamsNorthRidge.basicdata.time = "2 nights";
adamsNorthRidge.basicdata.jurisdiction = "Gifford Pinchot National Forest";
adamsNorthRidge.basicdata.contact = 'Mt. Adams Ranger District';
adamsNorthRidge.basicdata.special = "Take along one rope. Allow a half day for the approach, a day for the climb, and another half day for returning to the cars.";

adamsNorthRidge.summary = "A lonely and non-technical route to the top of the second highest peak in Washington";





/** TRIPS BY STEVE **/

/** Del Campo
 */
 
delCampo = new trip();

delCampo.tripname = "Del Campo";
delCampo.tripURL = "trips/delCampo.html";
delCampo.mapURL = "http://www.topozone.com/map.asp?lat=47.9889&lon=-121.4462&s=100&size=s";
delCampo.season = new season(false,false,true,true);
delCampo.region = "MtnLoop";
delCampo.time = new time(false,true,false);
delCampo.author = new author("Steve Fox","sfox@eskimo.com");
delCampo.revdate = "May 11, 2000";
delCampo.comments = 1;

delCampo.commentarray = new Array(delCampo.comments);
delCampo.commentarray[0] = new comment("Thomas Breit","I tried to do this on May 19, 2003. The Monte Cristo road was fine, but by the time I got to about 4000 feet on the Wedel Creek trail, I (and the dogs I took) were postholing hip-deep, so we turned around. The lower part of the trail was in pretty bad shape with downed trees. I finally made it up in August, and it's truely a worthwhile scramble. The approach in to Gothic Basin is pretty stiff and not that scenic, but Gothic Basin makes it worthwhile, just gorgeous in an other-worldly sort of way. Once up there, I wished I'd brought overnight gear, since it's truly worth hanging out in. The scramble up to the summit of Del Campo is a bit stiffer than Mt. Pugh, probably, and you do need to take care on the descent, but it's manageable if you take your time. Bring plenty of water, you'll need it.","Dec 7, 2003");

delCampo.basicdata = new basicdata();
delCampo.basicdata.seasons = "late summer or fall";
delCampo.basicdata.loc ="Mountain Loop Highway";
delCampo.basicdata.features = "historic mining trail, rocky summit";
delCampo.basicdata.bestmap = "USGS Bedal";
delCampo.basicdata.time = "day";
delCampo.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
delCampo.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Verlot Ranger Station</a>';
delCampo.basicdata.special = 'exposure, can combine with <a href="gothic.html">Gothic</a>';

delCampo.summary = "Grand view of the Monte Cristo area peaks.";


/** Persis
 */
 
persis = new trip();

persis.tripname = "Mount Persis";
persis.tripURL = "trips/persis.html";
persis.mapURL = "http://www.topozone.com/map.asp?lat=47.7906&lon=-121.6111&s=100&size=s";
persis.season = new season(true,true,false,false);
persis.region = "NorthCascades";
persis.time = new time(true,false,false);
persis.author = new author("Steve Fox","sfox@eskimo.com");
persis.revdate = "May 15, 2000";
persis.comments = 1;

persis.commentarray = new Array(persis.comments);
persis.commentarray[0] = new comment("Mike Garrison","Take Road 62 and just keep turning left at every ungated branch of the road. The last left turn happens at a waterfall. Follow the road uphill, go over a crest, and go downhill just a short bit. When the road levels out, park in a wide spot. The trail starts 50 feet further up the road, in a very steep cut of the bank. Lots of blowdowns make it difficult in places to follow the trail. Or even find the trail.","May 27, 2003");

persis.basicdata = new basicdata();
persis.basicdata.seasons = "winter or spring";
persis.basicdata.loc ="US 2";
persis.basicdata.features = "easy access, great views";
persis.basicdata.bestmap = "USGS Index";
persis.basicdata.time = "1/2 day";
persis.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
persis.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Skykomish Ranger Station</a>';
persis.basicdata.special = 'snowshoes or crampons';

persis.summary = "A great snowshoe climb.";


/** Gothic
 */
 
gothic = new trip();

gothic.tripname = "Gothic Peak";
gothic.tripURL = "trips/gothic.html";
gothic.mapURL = "http://www.topozone.com/map.asp?lat=47.9889&lon=-121.4462&s=100&size=s";
gothic.season = new season(false,false,true,true);
gothic.region = "MtnLoop";
gothic.time = new time(false,true,false);
gothic.author = new author("Steve Fox","sfox@eskimo.com");
gothic.revdate = "May 14, 2000";
gothic.comments = 0;

gothic.commentarray = new Array(gothic.comments);

gothic.basicdata = new basicdata();
gothic.basicdata.seasons = "late summer or fall";
gothic.basicdata.loc ="Mountain Loop Highway";
gothic.basicdata.features = "historic mining trail";
gothic.basicdata.bestmap = "USGS Bedal";
gothic.basicdata.time = "day";
gothic.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
gothic.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Verlot Ranger Station</a>';
gothic.basicdata.special = 'can combine with <a href="delCampo.html">Del Campo</a>';

gothic.summary = "Grand view of the Monte Cristo area peaks.";


/** Sperry
 */
 
sperry = new trip();

sperry.tripname = "Sperry Peak";
sperry.tripURL = "trips/sperry.html";
sperry.mapURL = "http://www.topozone.com/map.asp?lat=48.0263&lon=-121.4879&s=50&size=s";
sperry.season = new season(false,true,true,true);
sperry.region = "MtnLoop";
sperry.time = new time(true,true,false);
sperry.author = new author("Steve Fox","sfox@eskimo.com");
sperry.revdate = "May 14, 2000";
sperry.comments = 1;

sperry.commentarray = new Array(sperry.comments);

sperry.commentarray[0] = new comment("Scott Presho","I have scrambled the South Ridge. Except for a bit of looseness at the start, the climbing is only slightly harder than the standard West Ridge and the views down the East Face are awesome. After reaching the lake and beginning the traverse around the right side, climb up slope, taking the path of least resistance until you reach the ridge top. Turn left and head for the summit.","Jan 30, 2002");

sperry.basicdata = new basicdata();
sperry.basicdata.seasons = "almost any time of year";
sperry.basicdata.loc ="Mountain Loop Highway";
sperry.basicdata.features = "glacial sculpting";
sperry.basicdata.bestmap = "USGS Silverton<br>USGS Bedal";
sperry.basicdata.time = "1/2 day to all day";
sperry.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
sperry.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Verlot Ranger Station</a>';
sperry.basicdata.special = 'May be combined with Vesper';

sperry.summary = "Almost as good a climb as Vesper.";



/** Conglomerate-Iron
 */
 
congIron = new trip();

congIron.tripname = "Conglomerate and Iron";
congIron.tripURL = "trips/congIron.html";
congIron.mapURL = "http://www.topozone.com/map.asp?lat=47.8583&lon=-121.4292&size=s&s=50";
congIron.season = new season(true,false,false,false);
congIron.region = "NorthCascades";
congIron.time = new time(true,true,false);
congIron.author = new author("Steve Fox","sfox@eskimo.com");
congIron.revdate = "May 24, 2000";
congIron.comments = 0;

congIron.commentarray = new Array(congIron.comments);

congIron.basicdata = new basicdata();
congIron.basicdata.seasons = "winter";
congIron.basicdata.loc ="US 2";
congIron.basicdata.features = "";
congIron.basicdata.bestmap = "USGS Baring";
congIron.basicdata.time = "3/4 day";
congIron.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
congIron.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Skykomish Ranger Station</a>';
congIron.basicdata.special = 'snowshoes';

congIron.summary = "A winter snowshoe climb.";



/** West Higgins
 */
 
westHiggins = new trip();

westHiggins.tripname = "West Higgins";
westHiggins.tripURL = "trips/westHiggins.html";
westHiggins.mapURL = "http://www.topozone.com/map.asp?lat=48.3149&lon=-121.7885&s=50&size=s";
westHiggins.season = new season(true,false,false,false);
westHiggins.region = "MtnLoop";
westHiggins.time = new time(true,true,false);
westHiggins.author = new author("Steve Fox","sfox@eskimo.com");
westHiggins.revdate = "May 24, 2000";
westHiggins.comments = 1;

westHiggins.commentarray = new Array(westHiggins.comments);
westHiggins.commentarray[0] = new comment("Mike Garrison","Higgins trail has a ton of mosquitos if you make the hike in June.","June 26, 2000");

westHiggins.basicdata = new basicdata();
westHiggins.basicdata.seasons = "winter";
westHiggins.basicdata.loc ="Hwy 530 near Darrington";
westHiggins.basicdata.features = "technically easy, low avalanche hazard";
westHiggins.basicdata.bestmap = "USGS Mount Higgins";
westHiggins.basicdata.time = "1/2 day to all day";
westHiggins.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
westHiggins.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">Darrington Ranger Station</a>';
westHiggins.basicdata.special = 'stream can be difficult to cross in spring';

westHiggins.summary = "A good winter snowshoe climb.";




/** TRIPS BY Thomas **/

/** Tinkham
 */
 
tinkham = new trip();

tinkham.tripname = "Tinkham Peak";
tinkham.tripURL = "trips/tinkham.html";
tinkham.mapURL = "http://www.topozone.com/map.asp?n=5244763&e=620800&z=10";
tinkham.season = new season(false,true,true,true);
tinkham.region = "I90";
tinkham.time = new time(true,false,false);
tinkham.author = new author("Thomas Breit","tbreit99@yahoo.com");
tinkham.revdate = "Sept 30, 2001";
tinkham.comments = 1;

tinkham.commentarray = new Array(tinkham.comments);
tinkham.commentarray[0] = new comment("Mike Garrison","I went up there after some fresh snow. I am sure the climb is no more than class 3 when dry, but wet with lose snow it was much more thrilling than I had bargained for. Took longer, too, though I eventually reached both summits. The eastern one is perhaps very slightly higher. To find the correct road, go straight when you come off the eastbound Hyak exit. Enter the road marked No Outlet.","Nov 3, 2001");

tinkham.basicdata = new basicdata();
tinkham.basicdata.seasons = "probably year round";
tinkham.basicdata.loc ="I-90";
tinkham.basicdata.features = "quick and uncrowded";
tinkham.basicdata.bestmap = "USGS Lost Lake";
tinkham.basicdata.time = "1/2 day";
tinkham.basicdata.jurisdiction = "Mt. Baker-Snoqualmie National Forest";
tinkham.basicdata.contact = '<a href="http://www.fs.fed.us/r6/mbs/mbsoffi.htm">North Bend Ranger Station</a>';
tinkham.basicdata.special = "Can also climb Silver and Abiel";

tinkham.summary = "The hard part was finding the right road.";



