//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 page", "home page",  "http://www.echadmusic.com/", "");
	menu.addItem("aboutechad", "about echad", "about echad",  null, null);
	menu.addItem("topics", "topics of interest", "topics of interest",  null, null);
	menu.addItem("get_involved", "get involved", "get involved",  null, null);

	menu.addSubItem("aboutechad", "listen to music", "listen to music",  "music.htm", "");
	menu.addSubItem("aboutechad", "podcast", "podcast", "echadcast.htm", "");
	menu.addSubItem("aboutechad", "about us", "about us",  "about.htm", "");
	menu.addSubItem("aboutechad", "lyrics", "lyrics",  "lyrics.htm", "");
	menu.addSubItem("aboutechad", "photos", "photos",  "photos.htm", "");
	menu.addSubItem("aboutechad", "buy cd and songbook", "buy cd and songbook",  "buy_cd.htm", "");
	menu.addSubItem("aboutechad", "testimonials", "testimonials",  "about.htm#testimonials", "");
	menu.addSubItem("aboutechad", "cd credits", "cd credits",  "credits.htm", "");	
	menu.addSubItem("aboutechad", "contact us", "contact us",  "mailto:info@echadmusic.com", "");

	menu.addSubItem("topics", "messianic judaism", "messianic judaism",  "about.htm#judaism", "");
	menu.addSubItem("topics", "davidic dance", "davidic dance",  "about.htm#dance", "");
	menu.addSubItem("topics", "our prayer for you", "our prayer for you",  "about.htm#on writing music", "");

	menu.addSubItem("get_involved", "news & concerts", "news & concerts",  "about.htm#news", "");
	menu.addSubItem("get_involved", "simchat yisrael", "simchat yisrael",  "http://www.simchatyisrael.org/", "");
	menu.addSubItem("get_involved", "buy echad stuff", "buy echad stuff", "http://www.cafepress.com/echadmusic" , "target=_blank");

	menu.showMenu();
}