//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", "About Us", "About Us",  null, null);
	menu.addItem("newsid", "Our Communities", "Our Communities",  null, null);
	//menu.addItem("searchengineid", "Available Inventory", "Available Inventory",  null, null);
	menu.addItem("miscid", "Media", "Media",  null, null);
        menu.addItem("freedownloadid", "Information", "Information",  null, null);

	menu.addSubItem("webmasterid", "About Us", "About Us",  "http://www.jskempf.com/about_us.htm");
        menu.addSubItem("webmasterid", "Testimonials", "Testimonials",  "http://www.jskempf.com/testimonials.htm");
        menu.addSubItem("webmasterid", "Portfolio", "Our Designs",  "http://www.jskempf.com/portfolio.htm");
	menu.addSubItem("webmasterid", "Home Arama 2002", "Home Arama 2002",  "http://www.jskempf.com/homearama_2002.htm");

	menu.addSubItem("newsid", "Our Communities", "Our Communities",  "http://www.jskempf.com/our_communities.htm");
	menu.addSubItem("newsid", "Longview", "Longview",  "http://www.jskempf.com/the_club_at_longview.htm");
	menu.addSubItem("newsid", "Innisbrook", "Innisbrook",  "http://www.jskempf.com/innisbrook.htm");
	menu.addSubItem("newsid", "Palisades", "Palisadse",  "http://www.jskempf.com/palisades.htm");
    menu.addSubItem("newsid", "Springfield", "Springfield",  "http://www.jskempf.com/springfield.htm");
    menu.addSubItem("newsid", "Skyecroft", "Skyecroft",  "http://www.jskempf.com/skyecroft_page.htm");        
    menu.addSubItem("newsid", "The Sanctuary", "The Sanctuary",  "http://www.jskempf.com/Sanctuary.htm");
    menu.addSubItem("newsid", "Build On Your Lot", "Build On Your Lot",  "http://www.jskempf.com/on_your_lot.htm");

	// menu.addSubItem("searchengineid", "Available Homes", "Available Homes",  "http://www.jskempf.com/available_inventory_list.htm");
    // menu.addSubItem("searchengineid", "Available Homesites", "Available Homesites",  "http://www.jskempf.com/available_inventory_homesites.htm");
	
	menu.addSubItem("miscid", "Today's Custom Home", "Today's Custom Home",  "http://www.jskempf.com/todays_custom_home.htm");
	menu.addSubItem("miscid", "Builder Architect Magazine", "Builder Architect Magazine",  "http://www.jskempf.com/builder_architect.htm");
    menu.addSubItem("miscid", "Tour 2002 Homearama", "Tour 2002 Homearama",  "http://www.jskempf.com/homearama_tour.htm");
    menu.addSubItem("miscid", "Tour Our Designs", "Tour Our Designs",  "http://www.jskempf.com/our_designs_tour.htm");
          
    menu.addSubItem("freedownloadid", "Contact Us", "Contact Us",  "http://www.jskempf.com/contact_us.htm");
    menu.addSubItem("freedownloadid", "Home Page", "Home Page",  "http://www.jskempf.com/index.htm");
	menu.addSubItem("freedownloadid", "Finding Us", "Finding Us",  "http://www.jskempf.com/finding_us.htm");
	

	menu.showMenu();
}
