//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.", "Products Information",  null, null);
    menu.addItem("purchase", "Buy", "Buy XYZ Estimator",  null, null);
	menu.addItem("Demo", "Demo", "Request a Demo",  null, null);
	menu.addItem("about", "XYZ Estimator", "About XYZ Estimator",  null, null);
	menu.addItem("screenshots", "Screenshots / Info.", "Screenshots",  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", "XYZ Estimatot Pro", "XYZ Estimator Pro Info. & ScreenShots",  "UnderConstruction.asp", "");
	menu.addSubItem("products", "XYZ Estimatot Lite", "XYZ Estimator Lite Info. & ScreenShots",  "UnderConstruction.asp", "");
	menu.addSubItem("products", "Interior Rooms/PrimaryBid_Worksheet", "Interior Rooms/PrimaryBid_Worksheet Info. & ScreenShots",  "UnderConstruction.asp", "");
	menu.addSubItem("products", "Contract/Propsal Form", "Contract/Propsal Info. & ScreenShots",  "ContractPropinfo.asp", "");
	menu.addSubItem("products", "Decor Features Form", "Decor Features Info. & ScreenShots",  "UnderConstruction.asp", "");
	      	
	menu.addSubItem("purchase", "Buy XYZ Estimator", "Buy XYZ Estimator",  "UnderConstruction.asp", "");
	
	menu.addSubItem("Demo", "Demo", "Request XYZ Estimator Demo",  "UnderConstruction.asp", "");
	
	menu.addSubItem("about", "About XYZ Estimator", "Get More Info about XYZ Estimator",  "UnderConstruction.asp", "");
		
	menu.addSubItem("screenshots", "Interior Labor Form", "Interior Labor Form  Info/Screenshots",  "UnderConstruction.asp", "");
	menu.addSubItem("screenshots", "Misc. Labor Form", "Misc. Labor Form Info/Screenshots",  "UnderConstruction.asp", "");
	menu.addSubItem("screenshots", "Exterior Labor Form", "Exterior Labor Form Info/Screenshots",  "UnderConstruction.asp", "");
	
	
	menu.addSubItem("download", "Down Loading Troubles", "Having Troubles Down Loading Demo?",  "UnderConstruction.asp", "");

	menu.addSubItem("HowTo", "Moss, Mold, Algae or Fungus", "Remove Moss, Mold, Algae or Fungus",  "UnderConstruction.asp", "");
    menu.addSubItem("HowTo", "Dry-Rot (Locate & Repair)","Finding and Repairing Dry-Rot", "UnderConstruction.asp",  "", "");
        
  	menu.addSubItem("links", "Links", "Go to Links Page",  "UnderConstruction.asp", "");

    menu.addSubItem("company", "About Us", "Find out about us",  "UnderConstruction.asp", "");
	menu.addSubItem("company", "Contact Us", "How To Reach Us",  "UnderConstruction.asp", "");
	menu.addSubItem("company", "Orders", "Ordering Options",  "UnderConstruction.asp", "");
	
	menu.showMenu();
}