/* 
   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 ...", "#", " Welcome to my friends page " );
jumpItem[1] = new mjhLink ( "Friends index", "index.htm", " meet my friends " );
jumpItem[2] = new mjhLink ( "My 47th Birthday", "turning47.htm", " Still 47 after all these years " );
jumpItem[3] = new mjhLink ( "Why 47?", "47.htm", " what is the meaning of 47? " );
jumpItem[4] = new mjhLink ( "Celebration", "celebrants.htm", " the party has just begun... " );
jumpItem[5] = new mjhLink ( "John Stewart", "jgs.htm", " since the second grade " );
jumpItem[6] = new mjhLink ( "The Droogs", "droogs.htm", " hard-on! " );
jumpItem[7] = new mjhLink ( "Merri Rudd", "mr.htm", " my beloved " );
//jumpItem[7] = new mjhLink ( "Los Mullanys", "mullanys.htm", " Jas., Marj, Maddie and Riley ");
//jumpItem[8] = new mjhLink ( "Lucky Dog", "lucky.htm", " good dog! ");
jumpItem[8] = new mjhLink ( "mjh's Home Page", "../index.html", "Where it all begins");
jumpItem[9] = new mjhLink ( "write Mark", "mailto:mark@mjhinton.com?subject=friends", " email " );


//jumpItem[] = new mjhLink ( "name", "URL" );


