/* 
   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 ( "www.mjhinton.com", "../index.html", " my home page " );
jumpItem[2] = new mjhLink ( "Trips index", "index.htm", " Welcome to my trips page! " );
jumpItem[3] = new mjhLink ( "Chaco Canyon", "2003/aprchaco.htm", " April 2003 " );
jumpItem[4] = new mjhLink ( "write Mark", "mailto:trips@mjhinton.com?subject=trips", " email " );

//jumpItem[] = new mjhLink ( "name", "URL" );

