/* 
   local list of links for jump menu
   copyright (c) 2003 by Mark Justice Hinton
   mark@mjhinton.com 
*/

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 ( "All Trips", "../index.htm", " my trips page " );
jumpItem[2] = new mjhLink ( "Chaco Canyon", "aprchaco.htm", " April 2003 " );
//jumpItem[3] = new mjhLink ( "", ".htm", "" );
jumpItem[3] = new mjhLink ( "write Mark", "mailto:trips@mjhinton.com?subject=trips", " write anytime! " );

