//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", "Home",  null, null);
	menu.addItem("products", "Products Info. / Sceenshots", "Products Information",  null, null);
    menu.addItem("purchase", "Buy", "Buy XYZ Estimator",  null, null);
	menu.addItem("Demo", "Demo", "Request a Demo",  null, null);
	menu.addItem("Belts", "Tool Belts", "Advanced Work Belts",  null, null);
	menu.addItem("about", "Gutter Estimator", "About Gutter Estimator",  null, null);
	menu.addItem("download", "Down Loading troubles", "Troubles Down Loading",  null, null);
	menu.addItem("HowTo", "How To / Info.", "Misc Info",  null, null);
	menu.addItem("links", "Links", "Links",  null, null);
	menu.addItem("company", "Company", "Miscellaneous",  null, null);
      
	menu.addSubItem("home", "Return to Home", "Home",  "index.asp", "");
	
	menu.addSubItem("products", "Gutter Estimator Pro", "Gutter Estimator Pro Info. & ScreenShots",  "GutterEstimatorPro.asp", "");
	menu.addSubItem("products", "PrimaryBid_Worksheet", "PrimaryBid_Worksheet Info. & ScreenShots",  "PrimaryBid_Worksheet.asp", "");
	menu.addSubItem("products", "Materials 1 Form", "Materials 1 Info. & ScreenShots",  "Materials.asp", "");
	menu.addSubItem("products", "Materials 2 Form", "Materials 2 Info. & ScreenShots",  "Materials2.asp", "");
	menu.addSubItem("products", "Contract/Propsal Form", "Contract/Propsal Info. & ScreenShots",  "ContractPropinfo.asp", "");
	menu.addSubItem("products", "Invoice Form", "Invoice Info. & ScreenShots",  "Invoice.asp", "");
	menu.addSubItem("products", "Letter Form", "Labor Info. & ScreenShots",  "Letter.asp", "");
	menu.addSubItem("products", "Estimate/Take Off Sheets", "Labor Info. & ScreenShots",  "Takeoffsheets.asp", "");
	menu.addSubItem("products", "Questionnaire Form", "Questionnaire Info. & ScreenShots",  "Questionare.asp", "");
	menu.addSubItem("products", "Templates Copy Paste Form", "Questionnaire Info. & ScreenShots",  "TemplatesCopyPaste.asp", "");
	      	
	menu.addSubItem("purchase", "Buy Gutter Estimator", "Buy Gutter Estimator",  "Buy.asp", "");
	
	menu.addSubItem("Demo", "Download Demo Request", "Request Gutter Estimator Demo",  "Download_Demo_Request.htm", "");
	
	menu.addSubItem("Belts", "Advanced Tool Belts", "Worlds Most Advanced Tool Belts",  "toolbelts.asp", "");

	menu.addSubItem("about", "About Gutter Estimator", "Get More Info about Gutter Estimator",  "AboutGutterEst.asp", "");
	menu.addSubItem("about", "Describes the Step by Step Process using Gutter Estimator", "Describes the Step by Step Process using Gutter Estimator",  "StepbyStepEstimate.asp", "");
		
	menu.addSubItem("download", "Down Loading Troubles", "Having Troubles Down Loading Demo?",  "Downloads_help.asp", "");

	menu.addSubItem("HowTo", "Gutters (Types/Sizes etc.)", "Gutter Types/Sizes etc.",  "GutterInfo.asp", "");
    menu.addSubItem("HowTo", "Downspouts (Types/Sizes etc.)","Downspout Types/Sizes etc.", "DownspoutInfo.asp",  "", "");
    menu.addSubItem("HowTo", "Gutters Purpose","What is the purpose of Gutters", "Gutters_Purpose.asp",  "", "");
    menu.addSubItem("HowTo", "Gutter Guards","Gutter Guard Types/Sizes etc.", "GutterGuardsInfo.asp",  "", "");   
    menu.addSubItem("HowTo", "Cleaning Gutters","Cleaning Gutters", "Cleaning_Gutters.asp",  "", "");  
    menu.addSubItem("HowTo", "Cleaning Clog Free Gutters","Cleaning Clog Free Gutters", "Clogfree_Gutters.asp",  "", ""); 
    menu.addSubItem("HowTo", "Repairing a Leaky Gutter","Repairing a Leaky Gutter", "Gutter_Repair.asp",  "", "");
     
  	menu.addSubItem("links", "Links", "Go to Links Page",  "Links.asp", "");

    menu.addSubItem("company", "About Us", "Find out about us",  "AboutUs.asp", "");
	menu.addSubItem("company", "Contact Us", "How To Reach Us",  "Contact.asp", "");
	menu.addSubItem("company", "Orders", "Ordering Options",  "orders.asp", "");
	menu.addSubItem("company", "Privacy Policy", "Privacy Policy",  "PrivacyPolicy.asp", "");
	
	menu.showMenu();
}
