//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);
      
menu = new Menu();
	menu.addItem("webmasterid", "Web Site Designing", "Web Site Designing",  null, null);
	menu.addItem("newsid", "About Us", "About Us",  null, null);
	menu.addItem("freedownloadid", "Services", "Services",  null, null);
	menu.addItem("searchengineid", "Free Downloads", "Free Downloads",  null, null);
	menu.addItem("miscid", "Interesting Sites", "Interesting Sites",  null, null);
      
      menu.addSubItem("webmasterid", "Home", "Home",  "index.html");
      menu.addSubItem("webmasterid", "Getting a Start", "Getting a Start",  "index2.html");
	menu.addSubItem("webmasterid", "Why a Web Site", "Why a Web Site ?",  "why.html");
	menu.addSubItem("webmasterid", "Easy Steps", "Easy Steps",  "steps.html");
	menu.addSubItem("webmasterid", "Saving On Cost", "Saving On Cost",  "cost.html");
	menu.addSubItem("webmasterid", "Custom Planning", "Custom Planning",  "custom.html");
      menu.addSubItem("webmasterid", "Promotion", "Promotion",  "promotion.html");
      menu.addSubItem("webmasterid", "Portfolio", "Portfolio",  "portfolio.html");
      menu.addSubItem("webmasterid", "Free Quote", "Free Quote",  "shotquote.html");
      menu.addSubItem("webmasterid", "Prices", "Prices",  "price.html");

	menu.addSubItem("newsid", "About Us", "About Us",  "about.html");
	menu.addSubItem("newsid", "Contact Us", "Contact Us",  "contact.html");
	menu.addSubItem("newsid", "Clients Say", "Clients Say",  "feedback.html");
	menu.addSubItem("newsid", "Portfolio", "Portfolio",  "portfolio.html");
	menu.addSubItem("newsid", "Competative Hosting", "Competative Hosting",  "hosting.html");
	menu.addSubItem("newsid", "Talking FAQ", "Talking FAQ",  "faq.html");
	menu.addSubItem("newsid", "New Staff Member", "New Staff Member",  "kiran.html");

	menu.addSubItem("freedownloadid", "Services", "Services",  "services.html");
	menu.addSubItem("freedownloadid", "Competative Hosting", "Competative Hosting",  "hosting.html");
	menu.addSubItem("freedownloadid", "Website Designing", "Website Designing",  "index2.html");
      menu.addSubItem("freedownloadid", "Reconstruction", "Reconstruction",  "index2.html");
      menu.addSubItem("freedownloadid", "Custom Logos", "Custom Logos",  "services.html");
      menu.addSubItem("freedownloadid", "Flash Animations", "Flash Animations",  "services.html");
      menu.addSubItem("freedownloadid", "Flash Samples", "Flash Samples",  "services.html");
      menu.addSubItem("freedownloadid", "Java Applets", "Java Applets",  "services.html");

      menu.addSubItem("searchengineid", " Free Software", "Free Software",  "download.html");
      menu.addSubItem("searchengineid", " Free Animated Gifs", "Free Animated Gifs",  "animations1.html");
	menu.addSubItem("searchengineid", " Free Midi Music", "Free Midi Music",  "music.html");
	menu.addSubItem("searchengineid", " Free Stuff Index 1", "Free Stuff Index 1", "free.html");
	menu.addSubItem("searchengineid", " Free Stuff Index 2", "Free Stuff Index 2", "images2.html");
      menu.addSubItem("searchengineid", " Free Newsletter", "Free Newsletter", "newsletter.html");
      menu.addSubItem("searchengineid", " Visit Links Page", "Visit Links Page", "link.html");
      menu.addSubItem("searchengineid", " Link to Us", "Link to Us", "links.html");

      menu.addSubItem("miscid", "US Space Shuttle", "US Space Shuttle",  "Shuttle.html");
	menu.addSubItem("miscid", "Classified Photos", "Classified Photos",  "door.htm");
      menu.addSubItem("miscid", "Boys? - Girls?", "Boys? - Girls?",  "genders.html");
	menu.addSubItem("miscid", "The Zoo", "The Zoo",  "zoo.htm");
      menu.addSubItem("miscid", "Test Site Popularity", "Test Site Popularity",  "popularity.html");
      menu.addSubItem("miscid", "Free Lottery Picks", "Free Lottery Picks",  "randomN3.html");
       menu.addSubItem("miscid", "Foof for Thought", "Food for Thought",  "thoughts.html");
	 menu.addSubItem("miscid", "A Little Surprise", "A little Surprise",  "test3.html");
        menu.addSubItem("miscid", "Success-(sex urge)?", "Success-(sex urge)?",  "success.html");
       menu.addSubItem("miscid", "Colored Text", "Colored Text",  "random.html");
       menu.addSubItem("miscid", "Super Color Chart", "Super Color Chart",  "colors.html");
       menu.addSubItem("miscid", "On-line Calculator", "On-line Calculator",  "Calculator.html");

       menu.showMenu();
}