//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("projectid", "Project Vehicles", "Project Vehicles",  null, null);
	menu.addItem("trailid", "Trail Rides / Photo Albums", "Trail Rides / Photo Albums",  null, null);
	menu.addItem("techarticlesid", "Tech Articles", "Tech Articles",  null, null);
	menu.addItem("weblinksid", "Favorite Links", "Favorite Links", null, null);

	menu.addSubItem("projectid", "Project Rubicon", "Project Rubicon",  "rubicon.php");
	menu.addSubItem("projectid", "Project Cherokee", "Project Cherokee",  "cherokee.php");
	menu.addSubItem("projectid", "Project Sahara", "Project Sahara",  "sahara.php");
	menu.addSubItem("projectid", "S-10", "S-10",  "s10.php");

	menu.addSubItem("trailid", "Paragon Adventure Park - Oct 26, 2002", "Paragon Adventure Park - Oct 26, 2002",  "gallery/paragon10262002");
	menu.addSubItem("trailid", "Paragon Adventure Park - Oct 30, 2004", "Paragon Adventure Park - Oct 30, 2004",  "gallery/paragon10302004");
	menu.addSubItem("trailid", "Research Triangle Park - Oct 24, 1998", "Research Triangle Park - Oct 24, 1998",  "gallery/rtp01");
	menu.addSubItem("trailid", "Research Triangle Park - Oct 31, 1998", "Research Triangle Park - Oct 31, 1998",  "gallery/rtp02");
	menu.addSubItem("trailid", "Highway 54 - May 1999", "Highway 54 - May 1999",  "gallery/highway54");
	menu.addSubItem("trailid", "Uwahrrie National Forest - Sep 19, 1998", "Uwahrrie National Forest - Sep 19, 1998",  "gallery/uwharrie01");
	menu.addSubItem("trailid", "Uwahrrie National Forest - Mid 1999", "Uwahrrie National Forest - Mid 1999",  "gallery/uwharrie02");
	menu.addSubItem("trailid", "Upper Tellico ORV Area", "Upper Tellico ORV Area",  "gallery/tellico06191999");
	menu.addSubItem("trailid", "Demler's - Flexing", "Demler's - Flexing",  "gallery/demlersflex");
	menu.addSubItem("trailid", "Demler's - Winching", "Demler's - Winching",  "gallery/demlerswinch");
	menu.addSubItem("trailid", "Snow Run!", "Snow Run!",  "gallery/snowrun2002 ");
	menu.addSubItem("trailid", "ARCA Phoenix", "ARCA Phoenix",  "gallery/arca");
	menu.addSubItem("trailid", "Ranco Rockcrawler Lift Kit", "Ranco Rockcrawler Lift Kit",  "gallery/ranchoflex");
	menu.addSubItem("trailid", "Storm 2000!", "Storm 2000!",  "gallery/storm2000");

	menu.addSubItem("techarticlesid", "Jeep TJ Winch Install", "Jeep TJ Winch Install",  "tjwinchinstall.php");
	menu.addSubItem("techarticlesid", "Jeep XJ Grille Guard Install", "Jeep XJ Grille Guard Install",  "xjgrilleguard.php");
	menu.addSubItem("techarticlesid", "XJ Winch Install", "XJ Winch Install",  "xjwinchinstall.php");
	menu.addSubItem("techarticlesid", "XJ Roof Rack Install", "XJ Roof Rack Install",  "rackinstall.php");
	menu.addSubItem("techarticlesid", "XJ IPF Light Install", "XJ IPF Light Install",  "ipfinstall.php");
	menu.addSubItem("techarticlesid", "XJ OME Lift Kit Install", "XJ OME Lift Kit Install",  "omelift.php");
	menu.addSubItem("techarticlesid", "JB Conversions SYE", "JB Conversions SYE",  "syeinstall.php");
	menu.addSubItem("techarticlesid", "Cobra CB Install", "Cobra CB Install",  "cbinstall.php");
	menu.addSubItem("techarticlesid", "Sirius Satellite Radio", "Sirius Satellite Radio",  "sirius.php");
	menu.addSubItem("techarticlesid", "XJ ARB Bull Bar Install", "XJ ARB Bull Bar Install",  "xjarbinstall.php");
	
	menu.addSubItem("weblinksid", "ARB", "ARB",  "http://www.arbusa.com/");
	menu.addSubItem("weblinksid", "JP Magazine", "JP Magazine",  "http://www.jpmagazine.com/");
	menu.addSubItem("weblinksid", "Jeep", "Jeep", "http://www.Jeep.com");
	menu.addSubItem("weblinksid", "Jeeps Unlimited", "Jeeps Unlimited",  "http://www.jeepsunlimited.com");



	menu.showMenu();
}