//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", "http://www.southpacificsportsbar.com", null);
        menu.addItem("weekly", "Weekly Events", "weekly",  null, null);
	menu.addItem("spsb", "SPSB", "SPSB Web Site Contents",  null, null);
	menu.addItem("party", "Party On", "Party On",  null, null);
	menu.addItem("contact", "Contact Us", "Contact Us",  null, null);

	menu.addSubItem("home", "Home", "Home",  "http://www.southpacificsportsbar.com", "");

        menu.addSubItem("weekly", "Monday", "Bottle Day and Night Mondays",  "http://www.southpacificsportsbar.com/monday.html", "");
	menu.addSubItem("weekly", "Tuesday", "Cribbage Tuesdays",  "http://www.southpacificsportsbar.com/tuesday.htm", "");
	menu.addSubItem("weekly", "Wednesday", "Wacky Wednesdays",  "http://www.southpacificsportsbar.com/wednesday.html", "");
	menu.addSubItem("weekly", "Thursday", "Pool Tournament Thursdays",  "http://www.southpacificsportsbar.com/thursday.html", "");
	menu.addSubItem("weekly", "Friday", "TGIF Fridays Bracelet Night",  "http://www.southpacificsportsbar.com/friday.html", "");
        menu.addSubItem("weekly", "Saturday", "Off the Hook Saturdays",  "http://www.southpacificsportsbar.com/saturday.html", "");
        menu.addSubItem("weekly", "Sunday", "Steller Sunday",  "http://www.southpacificsportsbar.com/sunday.html", "");

	menu.addSubItem("spsb", "Upcoming Events", "Upcoming Events",  "http://www.southpacificsportsbar.com/upcoming.htm", "");
        menu.addSubItem("spsb", "Breakfast Menu", "Home of the YARDBIRD Breakfast Special",  "http://www.southpacificsportsbar.com/breakfastmenu.htm", "");
        menu.addSubItem("spsb", "Lunch & Dinner Menu", "Home of the $6.95 Lunch Special",  "http://www.southpacificsportsbar.com/menu.htm", "");
	menu.addSubItem("spsb", "Happy Hour", "Mon-Fri 3pm till 6pm",  "http://www.southpacificsportsbar.com/happy.htm", "");
        menu.addSubItem("spsb", "Peek Inside", "Pictures",  "http://www.southpacificsportsbar.com/peekinside.html", "");
	menu.addSubItem("spsb", "Meet the Staff", "Check us out", "http://www.southpacificsportsbar.com/staff.html", "");
        menu.addSubItem("spsb", "SPSB Merchandise", "Shop SPSB Style",  "http://www.southpacificsportsbar.com/merchandise.html", "");
	menu.addSubItem("spsb", "Application",  "Online Employment Application", "http://www.southpacificsportsbar.com/application.htm", "");
	menu.addSubItem("spsb", "Directions", "Directions",  "http://www.southpacificsportsbar.com/directions.htm", "");

	
        menu.addSubItem("party", "Happy Hour", "Mon-Fri 3pm till 6pm",  "http://www.southpacificsportsbar.com/happy.htm", "");
	menu.addSubItem("party", "Kegger Parties", "Kegger Parties",  "http://southpacificsportsbar.com/party.html", "");

	
	menu.addSubItem("contact", "Email Us", "Email",  "mailto:staff@southpacificsportsbar.com?subject=Comments from SPSB Website", "");
	menu.addSubItem("contact", "Mailing List", "Sign Up Now",  "mailto:SPSB-request@southpacificsportsbar.com?subject=subscribe", "");

	menu.showMenu();
}