//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("musicid", "MUSIC", "",  null, null);
	menu.addItem("linksid", "LINKS", "",  null, null);
	menu.addItem("liveid", "LIVE", "",  null, null);
        menu.addItem("chatid", "CHAT", "",  null, null);
        menu.addItem("forumid", "FORUM", "",  null, null);

	

	
	menu.addSubItem("musicid", "My Tony Carey<br> and Planet P<br> collection", "",  "http://www.tony-carey.info/album.html", "_self");
	

	menu.addSubItem("linksid", "TC and Planet P<br> fan pages", "",  "http://www.tony-carey.info/links.html", "_self");

menu.addSubItem("linksid", "ProgRockRecords", "Buy Tonys Music Here",  "http://www.progrockrecords.com/shop/view.php?id=57", "_new");

menu.addSubItem("linksid", "BabyBoomerMusic", "Buy Tonys Music Here",  "http://www.babyboomermusic.com/", "_new");
	

	menu.addSubItem("liveid", "Tony Carey Live <br> Plaza Hotel, V&auml;ster&aring;s Sweden <br> 2004-04-10", "",  "http://www.tony-carey.info/TC.html", "_self");

menu.addSubItem("chatid", "CHAT about TC", "",  "http://pub34.bravenet.com/chat/show.php?usernum=2874387650&cpv=2", "_new");

menu.addSubItem("forumid", "FORUM for TC fans", "",  "http://pub34.bravenet.com/forum/2874387650", "_self");
	

	
	
	menu.showMenu();
}