/*
* 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("About Us","index.html","_self");
	mc.Start();
	mc.Add("Club Officers","club_officers.htm","_blank");
	mc.Add("Road Captains","Road Captains2.htm","_blank");
	mc.Add("Committees","index.html","_self");
		mc.Start();
		mc.Add("Sunshine Committee","sunshine_committee.htm","_blank");
		mc.Add("Military Recognition","military_recognition.htm","_blank");
		mc.End()
		mc.Add("Supported Charities","index.html","_self");
			mc.Start()
			mc.Add("Toys for Tots","toys_for_tots.htm","_blank");
			mc.End()
	mc.Add("Join Us","benefits.htm","_blank");
	mc.Add("Membership Form","Forms/chapterMembershipEnrollNone.pdf","_blank");
	mc.Add("Privacy Statement","privacy_statement.htm","_blank");
	mc.End();
mc.Add("Calendar","calendar.htm","_blank");
mc.Add("Ladies of Harley","index.html","_self");
		mc.Start();
		mc.Add("About Us","LOH/loh.htm","_blank");
		mc.Add("Activities","LOH/lohActivities10.htm","_blank");
		mc.Add("Our Schedule","LOH/lohSchedule10.htm","_blank");
		mc.End()
mc.Add("Members Only","members_only.htm","_blank");
mc.Add("Photogallery","index.html","_self");
	mc.Start();
	mc.Add("2010","2010/events.htm","_blank");
	mc.Add("2009","2009/2009_events.htm","_blank");
	mc.Add("2008","2008/2008_events.htm","_blank");
	mc.Add("2007","2007/2007_events.htm","_blank");
	mc.End()
mc.Add("Safety","safety.htm","_blank");
mc.Add("Links","index.html","_self");
	mc.Start();
	mc.Add("South East HD","http://www.southeastharley.com/","_blank");
	mc.Add("National HOG Assn.","http://www.harley-davidson.com/ex/hog/template.asp?locale=en_US&bmLocale=en_US&fnc=hog/","_blank");
	mc.Add("Ohio State HOG Rally","http://www.ohstatehogrally.com/","_blank");
	mc.Add("Local Weather","http://www.weather.com/weather/local/USOH1093?from=search_city/","_blank");
	mc.Add("ODOT Road Conditions","http://www.buckeyetraffic.org/","_blank");
	mc.Add("Report traffic lights to ODOT","http://www.dot.state.oh.us/news/Pages/ODOTimprovingTrafficSignalSafetyforMotorcyclesandScooters.aspx","_blank");
	mc.End();	
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();
