/*
 ______________________________________________________
/ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ\
|          Another JavaScript from Uncle Jim           |
|                                                      |
|   Feel free to copy, use and change this script as   |
|        long as this part remains unchanged.          |
|                                                      |
|      Visit my website at http://www.jdstiles.com     |
|           for more scripts like this one             |
|                                                      |
|                     Created: 1996                    |
|              Last Updated: December, 2005            |
\______________________________________________________/
 ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ
*/

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("mainsiteid", "Main Sites", "Main Sites",  null, null);
	menu.addItem("officeid", "Tips / Tutorials", "Office Tips",  null, null);
	menu.addItem("setsid", "Design Sets", "Design Sets",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("javaid", "JavaScripts", "JavaScripts",  null, null);

	menu.addSubItem("mainsiteid", "Home Page", "Home Page",  "http://jdstiles.com/");
	menu.addSubItem("mainsiteid", "Site Tree", "Site Tree",  "http://jdstiles.com/sitetree.html");
	menu.addSubItem("mainsiteid", "Feedback", "Feedback",  "http://jdstiles.com/java/feedbackmain.html");
	menu.addSubItem("mainsiteid", "Guest Book", "Guest Book",  "http://jdstiles.com/java/guestbook.html");


	menu.addSubItem("officeid", "Office Tips", "Office Tips",  "http://jdstiles.com/tips/");
	menu.addSubItem("officeid", "Access", "Access Tutorials",  "http://jdstiles.com/mso2k/access/");
	menu.addSubItem("officeid", "Excel", "Excel Tutorials",  "http://jdstiles.com/mso2k/excel/");
	menu.addSubItem("officeid", "Word", "Word Tutorials",  "http://jdstiles.com/mso2k/word/");
	menu.addSubItem("officeid", "PowerPoint", "PowerPoint Tutorials",  "http://jdstiles.com/mso2k/ppt/");
	menu.addSubItem("officeid", "Office Binder", "Office Binder",  "http://jdstiles.com/mso2k/binder/");
	menu.addSubItem("officeid", "General", "General Tips",  "http://jdstiles.com/jds.main_office.html");

	menu.addSubItem("setsid", "Design Sets", "Design Sets",  "http://jdstiles.com/sets/");

	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/");
	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");

	menu.addSubItem("javaid", "JavaScripts", "Examples",  "http://jdstiles.com/javamain.html");
	menu.addSubItem("javaid", "All New", "All New",  "http://jdstiles.com/java/allnew.html");
	menu.addSubItem("javaid", "Most Popular", "Most Popular",  "http://jdstiles.com/java/popular.html");
	menu.addSubItem("javaid", "Alpha List", "Alpha Listing",  "http://jdstiles.com/java/scriptlist2.html");

	menu.showMenu();
}
