/* 
   local list of links for jump menu
   copyright (c) 2002 by Mark Justice Hinton
   mjhinton@unm.edu 
*/

function mjhLink (name, URL, msg) {
this.name = name;
this.URL = URL;
this.msg = msg;
this.vClass;
}

jumpItem = new Array();
jumpItem[0] = new mjhLink ( "jump to ...", "#", "" );
jumpItem[1] = new mjhLink ( "Trips index", "index.htm", " Welcome to my trips page! " );
jumpItem[2] = new mjhLink ( "Map of June 2002 trip", "2002junemap.htm", " a thousand pretty miles " );
jumpItem[3] = new mjhLink ( "Southwestern Colorado", "2002june.htm", " while the Four Corners burn... " );
jumpItem[4] = new mjhLink ( "Slides", "../slides/2002june/index.htm", " pictures " );
//jumpItem[4] = new mjhLink ( "John Stewart", "jgs.htm", " since the second grade " );
//jumpItem[5] = new mjhLink ( "The Droogs", "droogs.htm", " hard-on! " );
//jumpItem[6] = new mjhLink ( "Merri Rudd", "mr.htm", " my beloved " );
//jumpItem[7] = new mjhLink ( "Los Mullanys", "mullanys.htm", " Jas., Marj, Maddie and Riley ");
jumpItem[5] = new mjhLink ( "My 47th Birthday", "../friends/index.htm", " The Big Celebration ");
jumpItem[6] = new mjhLink ( "mjhinton.com", "http://www.mjhinton.com", " A Work in Progress ");
//jumpItem[7] = new mjhLink ( "---", "#", "");
jumpItem[7] = new mjhLink ( "write Mark", "mailto:mark@mjhinton.com?subject=friends", " email " );

//jumpItem[] = new mjhLink ( "name", "URL" );


