//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("oneid", "HOME", "click link below", null, null);


        menu.addItem("twoid", "PURCHASE", "click link below", null, null);
	menu.addItem("threeid", "SAMPLES", "click link below",  null, null);
	menu.addItem("fourid", "CONTACT", "click link below",  null, null);
	menu.addItem("fiveid", "YOUR COMMENTS", "click link below" ,  null, null);  
        menu.addItem("sixid", "DVD REVIEW", "click link below",  null, null);
        menu.addItem("sevenid", "FISHING RELATED LINKS", "click link below",  null, null);

	menu.addSubItem("oneid", "alaskadvd.com", "alaskadvd.com", "index.html", "");
	
	menu.addSubItem("twoid", "Secure Order OnLine", "Secure Order OnLine",  "https://secure.alaskandvd.com/store/index.php?main_page=product_info&cPath=65&products_id=180", "");
	menu.addSubItem("twoid", "Mail Order", "Mail Order",  "purchase.html", "");

	menu.addSubItem("threeid", "Movie trailer", "Movie trailer",  "preview.html", "");
	menu.addSubItem("threeid", "Pictures", "Pictures",  "samples.html", "");
	
	menu.addSubItem("fourid", "Contact", "Contact",  "contact.html", "");
	menu.addSubItem("fourid", "Our Policies", "Our Policies",  "policy.html", "");
	
	menu.addSubItem("fiveid", "Feedback", "your comments",  "feedback.html", "");

	menu.addSubItem("sixid", "dvd review intro", "dvd review",  "review0.html", "");
        menu.addSubItem("sixid", "Naknek", "dvd review",  "review1.html", "");
        menu.addSubItem("sixid", "Kodiak", "dvd review",  "review2.html", "");
        menu.addSubItem("sixid", "Ketchikan", "dvd review",  "review3.html", "");
        menu.addSubItem("sixid", "Sitka", "dvd review",  "review4.html", "");
        menu.addSubItem("sixid", "Ninilchick", "dvd review",  "review5.html", "");
        menu.addSubItem("sixid", "Valdez/P.W.S.", "dvd review",  "review6.html", "");
        menu.addSubItem("sixid", "Lake Clark", "dvd review",  "review7.html", "");
        menu.addSubItem("sixid", "Kenai", "dvd review",  "review8.html", "");
        menu.addSubItem("sixid", "Seward", "dvd review",  "review9.html", "");
        menu.addSubItem("sixid", "Mat-Su", "dvd review",  "review10.html", "");
        menu.addSubItem("sixid", "Anvik", "dvd review",  "review11.html", "");
        menu.addSubItem("sixid", "closing comments", "dvd review",  "review12.html", "");

        menu.addSubItem("sevenid", "links", "links",  "links.html", "");
        menu.addSubItem("sevenid", "fishing records", "fish records",  "records.html", "");
	
        menu.showMenu();
}