/*
* Don't change or remove the head comments!
*
* DHTML hierarchical, object oriented menu: VB MENU 1.5
* Copyright (C) 2003-2004  Vladimir Bodurov
*
*   Version  1.5  2004-03-06
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.

* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* Copy of GNU Lesser General Public License at: http://www.gnu.org/copyleft/lesser.txt
*
* Source code home page: http://www.bodurov.com/menu.html
*/


// Creating and Managing object

var mc = new MenuCreator();

// Your menu starts here
        mc.Start();
	mc.Add("Vitals","main.html","_blank");
	    mc.Start();
	    mc.Add("Birth","main.html","_blank");
		mc.Start();
		mc.Add("Births 1926+","http://files.usgwarchives.org/tx/hill/vitals/births/","_blank");
		mc.Add("1903-1910 Births ","texts/birth1903-1910.txt","_blank");
		mc.Add("1911-1917 Births ","texts/birth1911-1917.txt","_blank");
		mc.Add("1918 Births","texts/1918births.txt","_blank");
		mc.End();

	mc.Add("Death","main.html","_blank");
		mc.Start();
			mc.Add("1903-1917","http://files.usgwarchives.org/tx/hill/vitals/deaths/deathinx.txt","_blank");
			mc.Add("1964-1999","http://files.usgwarchives.org/tx/hill/vitals/deaths/","_blank");
		mc.End();	
	mc.Add("Marriage","main.html","_blank");
		mc.Start();
			mc.Add("1873-1880","http://www.censusdiggins.com/hill_co,_tx_mgsa.html","_blank");
			mc.Add("1966-2002","http://files.usgwarchives.org/tx/hill/vitals/marriages/","_blank");
			mc.Add("Other Marriages","http://files.usgwarchives.org/tx/hill/vitals/marriages/hillmarr.txt","_blank");
		    mc.Add("Harris Females","texts/Harris marriages Females.docx","_blank");
		    mc.Add("Harris Males","texts/Harris marriages Males.doc","_blank");
			mc.Add("Divorce","http://files.usgwarchives.org/tx/hill/vitals/divorces/","_blank");
		mc.End();
	mc.Add("Obituaries","obits.html","_blank");
	mc.End();
mc.Add("Census","main.html","_blank");
	mc.Start();
	mc.Add("1880","http://www.usgwarchives.org/tx/hill/census/1880/","_blank");
	mc.Add("1890","http://ftp.us-census.org/pub/usgenweb/census/tx/hill/1890/","_blank");
	mc.Add("1900","http://www.usgwarchives.org/tx/hill/census/1900/","_blank");
	mc.End();
mc.Add("Scrapbook","main.html","_blank");
	mc.Start();
		mc.Add("Family","family.html","_blank");
		mc.Add("Around Town","town.html","_blank");
		mc.Add("Historical Landmarks","http://www.rootsweb.ancestry.com/~txhcgs/histmarkindex.htm","_blank");
	mc.End();
mc.Add("Military","main.html","_blank");
	mc.Start();
		mc.Add("Civil War","civilwar.html","_blank");
		mc.Add("World War I","WWI.html","_blank");
		mc.Add("World War II","WWII.html","_blank");
	mc.End();
mc.Add("Places","main.html","_blank");
	mc.Start();
		mc.Add("Towns","towns.html","_blank");
		mc.Add("Churches","churches.html","_blank");
		mc.Add("Schools","http://www.rootsweb.ancestry.com/~txhcgs/Hillcoschools.htm","_blank");
	mc.End();
mc.Add("Contact","mailto:hillcountygenweb@gmail.com");
	mc.Start();
		mc.Add("County Coordinator","mailto:hillcountygenweb@gmail.com","_blank");
		mc.Add("State Coordinator","mailto:shirlcullum@sbcglobal.net","_blank");
	mc.End();
// Your menu ends here

// if you uncomment this the menu will be vertical instead of horizontal
//mc.Vertical();
// if you uncomment this the box will be centered
//mc.Center();
// if you uncomment this you will have to write the first level youself
//mc.DoNotWriteFirstLevel();

mc.Draw();