//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("home", "Home", "Home",  null, null);
	menu.addItem("aboutus", "About Us", "About Glacier",  null, null);
	menu.addItem("bowling", "Bowling", "Bowling",  null, null);
	menu.addItem("coupon", "Coupons", "Coupons",  null, null);
	menu.addItem("party", "Parties", "Birthday Parties",  null, null);
	menu.addItem("proshop", "Pro Shop", "Glacier Lanes Pro Shop",  null, null);
	menu.addItem("pulltabs", "Pull Tabs", "Pull Tabs",  null, null);
	menu.addItem("restaurant", "Restaurant", "Glacier Restaurant",  null, null);

	menu.addSubItem("home", "Home Page", "Home Page",  "../updateable/home.htm", "");
	menu.addSubItem("home", "Contact Us", "Contact Us",  "../updateable/contact_us.htm", "");
	menu.addSubItem("home", "Employment Opportunities", "Employment Opportunites",  "../updateable/employment_opportnunities.htm", "");

	menu.addSubItem("aboutus", "About Glacier Lanes", "About Glacier Lanes",  "../updateable/about_glacier_lanes.htm", "");
	menu.addSubItem("aboutus", "Map to Glacier Lanes", "Map to Glacier Lanes",  "../updateable/map.html", "");
	menu.addSubItem("aboutus", "The New Synthetic Lanes", "The New Synthetic Lanes",  "../updateable/old_wood_lanes_make_way_for_new_.htm", "");
		
	menu.addSubItem("bowling", "Open Play", "Open Play",  "../updateable/open_play.htm", "");
	menu.addSubItem("bowling", "Rock N Bowl", "Rock N Bowl",  "../updateable/millers-madness.htm", "");
	menu.addSubItem("bowling", "Wall of Fame", "Wall of Fame",  "../updateable/wall_of_fame.htm", "");
	menu.addSubItem("bowling", "Youth Junior Bowling", "Youth Junior Bowling",  "../updateable/youth-junior-page.htm", "");		
	menu.addSubItem("bowling", "Tournaments", "Tournaments",  "../updateable/tournaments.htm", "");
	menu.addSubItem("bowling", "Bumper Bowlling", "Bumper Bowling",  "../about-glacier/bumper_bowling.htm", "");

	menu.addSubItem("coupon", "Open Play Coupon", "Open Play Coupon",  "../updateable/coupon_special.htm", "");
	menu.addSubItem("coupon", "Rock N Bowl", "Rock N Bowl",  "../updateable/rock-n-roll-bowling-coupon-page.htm", "");
	menu.addSubItem("coupon", "Restaurant Coupon", "Restaurant Coupon",  "../updateable/restaurant-coupon-page.htm", "");

	menu.addSubItem("party", "Bowling Parties", "Bowling Parties",  "../updateable/party_packages.htm", "");
	
	menu.addSubItem("proshop", "Pro Shop", "Pro Shop",  "../updateable/pro_shop.htm", "");
	menu.addSubItem("proshop", "Bowling Tips", "Bowling Tips",  "../updateable/bowling-tips.htm", "");
	
	menu.addSubItem("pulltabs", "Pull Tabs", "Pull Tabs",  "../updateable/pull_tabs.htm", "");
	
	menu.addSubItem("restaurant", "Glacier Restaurant & Lounge", "Glacier Restaurant & Lounge",  "../updateable/glacier_lanes_restaurant.htm", "");
	menu.addSubItem("restaurant", "Appetizer Menu", "Appetizer Menu",  "../restaurant/appetizers.htm", "");
	menu.addSubItem("restaurant", "Breakfast Menu", "Breakfast Menu",  "../restaurant/breakfast-menu.htm", "");
	menu.addSubItem("restaurant", "Lunch Menu", "Lunch Menu",  "../restaurant/lunch_menu.htm", "");
	menu.addSubItem("restaurant", "Dinner Menu", "Dinner Menu",  "../restaurant/dinner_menu.htm", "");
	menu.addSubItem("restaurant", "Side Order Menu", "Side Order Menu",  "../restaurant/side_orders.htm", "");

	menu.showMenu();
}