

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Navigate", "Navigation",  null, null);
	menu.addItem("meid", "Me", "Rob..Rob and More Rob",  null, null);
	menu.addItem("artid", "Art", "Art",  null, null);	
	menu.addItem("jesusid", "Jesus", "Jesus",  null, null);
	menu.addItem("cultureid", "Culture", "This Explains Much",  null, null);
	menu.addItem("blogid", "Blogs", "Daily Ramblings",  null, null);
	menu.addItem("emailid", "Contact Me", "Contact Me",  null, null);
	
	menu.addSubItem("homeid", "Main Menu", "Navigate",  "http://www.robthurman.com/menu.html");

	menu.addSubItem("meid", "All About Rob", "Rob..Rob and More Rob","http://www.robthurman.com/rob.html");
	menu.addSubItem("meid", "My Early Years", "Life on the Farm","http://www.robthurman.com/farm.html");
	menu.addSubItem("meid", "Drag", "Mascara and Memories","http://www.robthurman.com/bobo.html");
	menu.addSubItem("meid", "Drag Deux", "Tragedy","http://www.robthurman.com/bobo2.html");

	menu.addSubItem("artid", "Inspiration", "Inspiration",  "http://www.robthurman.com/art.html");
	menu.addSubItem("artid", "More Art", "More Art",  "http://www.robthurman.com/gallerymine.html");

	menu.addSubItem("jesusid", "Praise the Lord", "TBN", "http://www.robthurman.com/jan.html");
	menu.addSubItem("jesusid", "Touched by an Angel", "Sacrcasm at Work", "http://www.robthurman.com/janspage.html");

	menu.addSubItem("cultureid", "Anime", "Transmute", "http://www.robthurman.com/anime.html");
	menu.addSubItem("cultureid", "Foxy Brown", "The Lady...The Legend", "http://www.robthurman.com/foxy.html");
	menu.addSubItem("cultureid", "Mommie Dearest", "Things that Make Me Smile", "http://www.robthurman.com/joan.html");
	menu.addSubItem("cultureid", "Maria...Maria", "Tony....Tony", "http://www.robthurman.com/maria.html");
	menu.addSubItem("cultureid", "Wonder Woman", "The One and Only", "http://www.robthurman.com/wonder.html"); 

	menu.addSubItem("blogid", "I Rattle On...", "Daily Ramblings", "http://www.robthurman.com/weblog/");

	menu.addSubItem("emailid", "I Love E-Mail", "Write Me", "mailto:comments@robthurman.com");

	menu.showMenu();
}



