//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 Roof Estimator",  null, null);
	menu.addItem("Demo", "Demo", "Request a Demo",  null, null);
	menu.addItem("about", "Roof Estimator", "About Roof Estimator",  null, null);
	menu.addItem("download", "Down Loading Troubles", "Down Loading Troubles",  null, null);
	menu.addItem("HowTo", "How To / Info.", "Misc Info",  null, null);
	menu.addItem("videos", "Videos", "Videos",  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", "Roof Estimatot Pro", "Roof Estimatot Pro Info. & ScreenShots",  "RoofEstimatorPro.asp", "");
	menu.addSubItem("products", "Roof Estimatot Light", "Roof Estimatot Light Info. & ScreenShots",  "RoofEstimatorLight.asp", "");
	menu.addSubItem("products", "Contract/Propsal", "Contract/Propsal Info. & ScreenShots",  "ContractPropinfo.asp", "");
	menu.addSubItem("products", "Gutters/Dry-Rot", "Gutters/Dry-Rot Info. & ScreenShots",  "GuttersDryRot.asp", "");
	menu.addSubItem("products", "Tear-Off", "Tear-Offs Info. & ScreenShots",  "Tearoffs.asp", "");
	menu.addSubItem("products", "Tile Roof", "Tile Roofs Info. & ScreenShots",  "tile.asp", "");
	menu.addSubItem("products", "Flat Roof", "Flat Roofs Info. & ScreenShots",  "FlatRoofs.asp", "");
	menu.addSubItem("products", "Metal Roof", "Metal Roofs Info. & ScreenShots",  "MetalRoofs.asp", "");
		
	menu.addSubItem("purchase", "Buy Roof Estimator", "Buy Roof Estimator",  "buy.asp", "");
		
	menu.addSubItem("Demo", "Demo", "Request Roof Estimator Demo",  "Download_Demo_Requested.htm", "");
		
	menu.addSubItem("about", "About Roof Estimator", "Get More Info about Roof Estimator",  "AboutRoofEst.asp", "");
	menu.addSubItem("about", "New Roof Estimator 6.8 W/Customizable Forms", "Roof Estimator 6.8 W/Tab Pages",  "NewVer.asp", "");
	
	menu.addSubItem("download", "Down Loading Troubles", "Having Troubles Down Loading", "Downloads_help.asp", "");
	
    menu.addSubItem("HowTo", "Determine Roof Pitch (Slope)", "How to Determine Roof Pitch (Slope)",  "RoofPitch.asp", "");
    menu.addSubItem("HowTo", "Leaks (Locate & Repair)", "Locate your Leak",  "leaks.asp", "");
    menu.addSubItem("HowTo", "Do I Need A New Roof", "Signs you need a New Roof.",  "newroof.asp", "");
    menu.addSubItem("HowTo", "Moss, Mold, Algae or Fungus", "Remove Moss, Mold, Algae or Fungus",  "Moss.asp", "");
    menu.addSubItem("HowTo", "Dry-Rot (Locate & Repair)","Finding and Repairing Dry-Rot", "dryrot.asp",  "", "");
    menu.addSubItem("HowTo", "Roof Ventilation","Ventilate Hot Air in Attic", "ventilation.asp",  "", "");
    menu.addSubItem("HowTo", "Roofing Flashings/Vents","Shingling around Roof Penetrations", "flashing.asp",  "", "");
    menu.addSubItem("HowTo", "Install/Roof Valleys","Install/Roof Valleys", "videovalleys.asp",  "", "");
    menu.addSubItem("HowTo", "Pressure Wash Roof","Pressure Wash Roof", "pressurewash.asp",  "", "");
    menu.addSubItem("HowTo", "Apply Metal Roof","Apply Metal Roof", "videometalroof.asp",  "", "");
    menu.addSubItem("HowTo", "Re-Roofing Tips","ReRoofing Tips", "rooftips.asp",  "", "");
    menu.addSubItem("HowTo", "Roof Repairs","Repairing your Roof", "roofrepair.asp",  "", "");
    menu.addSubItem("HowTo", "Re-Roofing Your House","Re-Roofing your House", "reroofhouse.asp",  "", "");
    menu.addSubItem("HowTo", "Asphalt Roofing","Asphalt Roofing", "asphaltroofing.asp",  "", "");
    menu.addSubItem("HowTo", "Replace a Tile","Replace a Tile", "replacingtile.asp",  "", "");

        
    menu.addSubItem("videos", "Videos", "Videos",  "videos.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.showMenu();
}