//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("poemtrainid", "Poem Train", "Poem Train ~ an online educational society for the Creative Arts",  null, null);
	menu.addItem("cafepoeticaid", "Cafe Poetica", "Cafe Poetica ~ Poetry and Creative Arts critique forums where growth is encouraged through peer to peer mentoring",  null, null);
	menu.addItem("afterwordsid", "AfterWords", "AfterWords ~ A Monthly Newsletter from Poem Train and Cafe Poetica",  null, null);
	menu.addItem("contestsid", "Contests", "A variety of creative contests offered throughout the year sponsored by Poem Train",  null, null);


	menu.addSubItem("poemtrainid", "Mission Statement", "The Poem Train and Cafe Poetica Mission Statement -- who we are and why. ",  "/about.htm", "");
	menu.addSubItem("poemtrainid", "The Little Train", "The theme for our website that was inspired by Cosy Sheridan",  "/cosy.htm", "");
	menu.addSubItem("poemtrainid", "Poem Train Patrons", "The generous poets who support our site.",  "/patrons.htm", "");
	menu.addSubItem("poemtrainid", "Awards", "Design awards we have won and the design award we give out to individual poet websites",  "/award.htm", "");
	menu.addSubItem("poemtrainid", "Contact Us", "Who we are and How you can contact Us",  "/contact.htm", "");
	menu.addSubItem("poemtrainid", "Home", "Return to the home page",  "/", "");

	menu.addSubItem("cafepoeticaid", "Log in", "Existing members log in",  "http://www.poemtrain2.com/cgi-bin/yabb2/YaBB.pl?action=login", "");
	menu.addSubItem("cafepoeticaid", "Register", "Join our online educational society", "http://www.poemtrain2.com/cgi-bin/yabb2/YaBB.pl?action=register", "");
	menu.addSubItem("cafepoeticaid", "Forum Rules", "Some very common courtesies and site etiquette considerations",  "/rules.htm", "");

	menu.addSubItem("afterwordsid", "AfterWords Jan 2004", "Poem Train and Cafe Poetica's Monthly Newsletter",  "/awjan04.htm", "");
	menu.addSubItem("afterwordsid", "AfterWords Feb 2004", "Poem Train and Cafe Poetica's Monthly Newsletter",  "/awfeb04.htm", "");
	menu.addSubItem("afterwordsid", "Home", "Return to the home page",  "/", "");

	menu.addSubItem("contestsid", "Cafe Poetica Writing Contests", "Year round ongoing contests sponsored by Poem Train",  "/contesta.htm", "");
	menu.addSubItem("contestsid", "2003 TOR Challenge Winners", "Subject writing contest",  "/tor.htm", "");
	menu.addSubItem("contestsid", "2004 TOR Challenge Winners", "Subject writing contest",  "/tor04.htm", "");
	menu.addSubItem("contestsid", "Sonnet Contest Winners", "Sonnet Contest",  "/sonnet.htm", "");
	menu.addSubItem("contestsid", "Fast Track Poetry Contest", "Contest deadlines are June 30 and December 31",  "/fast.htm", "");
	menu.addSubItem("contestsid", "2002 Contest Winners", "Contest deadlines are June 30 and December 31",  "/cafewin02.htm", "");
	menu.addSubItem("contestsid", "Home", "Return to the home page",  "/", "");

	menu.showMenu();
}