//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("homeid", "Home/Dansk/Kontakt os", "Change betwen Engelsh and Danish languis/make contact to us",  null, null);
	menu.addItem("nyhedid", "News", "Latest news",  null, null);
	menu.addItem("personid", "About us", "About who we are and were we live",  null, null);
	menu.addItem("kennelid", "The Cairn", "About the kennel-breed histori-breed standard-grooming",  null, null);
	menu.addItem("hundeid", "Our dogs", "Our puppies",  null, null);
	menu.addItem("miscid", "Other things", "Links-pictures",  null, null);

	menu.addSubItem("homeid", "Homesite", "Homesite",  "default.htm", "");
  menu.addSubItem("homeid", "Dansk sprog/Kontakt os", "Dansk sprog/Kontakt os",  "dkstart.htm", "");
	menu.addSubItem("homeid", "English languish/Contact us", "English languish/Contact us",  "gbstart.htm", "");
	
	menu.addSubItem("nyhedid", "Show news", "Show news",  "gbnyheder.html", "");
	menu.addSubItem("nyhedid", "Puppy news", "Puppy news",  "gbhvalpenyheder.html", "");
	
	
	menu.addSubItem("personid", "Who we are", "Who we are",  "gbhvemervi.html", "");
	menu.addSubItem("personid", "Here we live", "Here we live",  "gbherborvi.htm", "");
	
	menu.addSubItem("kennelid", "The kennel", "About how ang why the kennel was started",  "gbkennel.html", "");
	menu.addSubItem("kennelid", "The historie of the Cairn", "Where do the Cairn come from, and why it looks this way.",  "gbhistorie.html", "");
	menu.addSubItem("kennelid", "Gooming", "Gooming",  "gbpleje.html", "");
  menu.addSubItem("kennelid", "Breed standard", "How a Cairn should look like",  "gbstandard.html", "");

	menu.addSubItem("hundeid", "Our dogs", "Our dogs",  "gbvorhunde.html", "");
	menu.addSubItem("hundeid", "Puppies", "Puppies",  "gbhvalpe.html", "");
	
	menu.addSubItem("miscid", "Links", "Links to other kennels og clubs",  "gblinks.html", "");
	menu.addSubItem("miscid", "Pictures", "Pictures of dogs and purhaps humans",  "billedshow.htm", "_blank");
menu.addSubItem("miscid", "Guestbook", "Read or write in our guestbook", "gbgaestebog.html", "");


	menu.showMenu();
}