//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("webmasterid", "Home", "Home",  null, null);
	menu.addItem("newsid", "Buyers", "Buyers",  null, null);
	menu.addItem("freedownloadid", "Sellers", "Sellers",  null, null);
	menu.addItem("searchengineid", "Listings", "Listings",  null, null);
	menu.addItem("miscid", "Search MLS", "Search MLS",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "index.html", "");
    menu.addSubItem("webmasterid", "About Us", "About Us",  "aboutus.html", "");
	menu.addSubItem("webmasterid", "Contact Us", "Contact Us",  "contactus.html", "");
	menu.addSubItem("webmasterid", "Email Us", "Email Us",  "contactus.html", "");
    menu.addSubItem("webmasterid", "Site Map", "Site Map",  "teleandwebsite.html", "");
	menu.addSubItem("webmasterid", "Newsletter", "Newsletter",  "prnewsletter.html", "");	
    menu.addSubItem("webmasterid", "GuestBook", "Guestbook",  "guestbook.html", "");

	menu.addSubItem("newsid", "Find A Home", "Find A Home",  "findahome.html", "");
	menu.addSubItem("newsid", "Open Houses", "Open Houses",  "openhouses.html", "");
	menu.addSubItem("newsid", "INFO!!! For Buyers", "INFO!!! For Buyers",  "infoforbuyers.html", "");
	menu.addSubItem("newsid", "First-Time Homebuyers", "First-Time Homebuyers",  "firsthomebuyers.html", "");
	menu.addSubItem("newsid", "Land For SALE!!!", "Land For Sale",  "landforsale.html", "");
	menu.addSubItem("newsid", "Financing", "Finacing",  "needalender.html", "");
	menu.addSubItem("newsid", "Mortgage Calculator", "Mortgage Calculator",  "mortgagecalculator.html", "");
    menu.addSubItem("newsid", "Testimonials", "Testimonials",  "testimonials.html", "");

	menu.addSubItem("freedownloadid", "INFO!!! For Sellers", "INFO!!! For Sellers",  "infoforsellers.html", "");
	menu.addSubItem("freedownloadid", "List My Property", "List My Property",  "listmyproperty.html", "");
	menu.addSubItem("freedownloadid", "FREE!!! Market Valuation", "FREE!!! Market Valuation",  "freevaluation.html", "");
    menu.addSubItem("freedownloadid", "For Sale By Owner", "For Sale By Owner",  "forsalebyowners.html", "");
    menu.addSubItem("freedownloadid", "Testimonials", "Testimonials",  "testimonials.html", "");
	   
	menu.addSubItem("searchengineid", "Commercial Listings", "Commercial Listings",  "listing.html", "");
	menu.addSubItem("searchengineid", "Residential Listings", "Residential Listings",  "listing.html", "");
	menu.addSubItem("searchengineid",  "Vacant Land Listings", "Vacant Land Listings",  "listing.html", "");
	menu.addSubItem("searchengineid",  "Investment Properties", "Investment Properties!!!",  "availableproperties.html", "");
	menu.addSubItem("searchengineid",  "Land For SALE!!!", "Land For SALE!!!",  "landforsale.html", "");

	menu.addSubItem("miscid", "For A Home", "For A Home",  "mlssearch.html", "");
	menu.addSubItem("miscid", "For Investment Property", "For Investment Property",  "mlssearch.html", "");
	menu.addSubItem("miscid", "For Vacant Land", "For Vacant Land",  "mlssearch.html", "");

	menu.showMenu();
}