//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", "Home",  null, null);
	menu.addItem("modellenid", "Casting", "Pets and other Animals, available for photography and film",  null, null);
	menu.addItem("infoid", "Info", "other info",  null, null);
	menu.addItem("linksid", "Links", "Faves and gottahaves",  null, null);
	
	menu.addSubItem("homeid", "Home", "Home", "http://www.dierencasting.nl/index2.html", "");
		
	menu.addSubItem("modellenid", "casting", "Why Animaux Pet Casting",  "http://www.dierencasting.nl/casting.html", "");
	menu.addSubItem("modellenid", "options/bookings", "bookings and options",  "http://www.dierencasting.nl/aanvraagengels.html", "");
	menu.addSubItem("modellenid", "goals", "our targets - dutch, sorry!)",  "http://www.dierencasting.nl/doelstellingen.engels.html", "");
	menu.addSubItem("modellenid", "rules", "our rules",  "http://www.dierencasting.nl/welkom.html", "");
	menu.addSubItem("modellenid", "list", "talent",  "http://www.dierencasting.nl/talent.html", "");
	menu.addSubItem("modellenid", "alterations", "change form (only for registered models)", "http://www.dierencasting.nl/mededeling.html", "_blank");
	menu.addSubItem("modellenid", "claim form", "declaration form", "http://www.dierencasting.nl/werkbriefje.html", "_blank");
	menu.addSubItem("modellenid", "faq", "FAQ",  "http://www.dierencasting.nl/faq.html", "");
	menu.addSubItem("modellenid", "at work", "experiences by models",  "http://www.dierencasting.nl/ervaringen.html", "");
	menu.addSubItem("modellenid", "photographers", "photographers we like to work with",  "http://www.dierencasting.nl/fotografen.html", "");
		
	menu.addSubItem("infoid", "our clients", "our clients",  "http://www.dierencasting.nl/portfolio.html", "");
	menu.addSubItem("infoid", "topmodels", "some results",  "http://www.dierencasting.nl/topmodels.html", "");
	menu.addSubItem("infoid", "publicity", "articles by press",  "http://www.dierencasting.nl/publiciteit.html", "");
	menu.addSubItem("infoid", "disclaimer", "disclaimer",  "http://www.dierencasting.nl/disclaimer.html", "_blank");
	
	menu.addSubItem("linksid", "favorites", "our favs",  "http://www.dierencasting.nl/links.html", "");
	menu.addSubItem("linksid", "Quality Mark", "Quality Mark", "http://www.dierencasting.nl/keurmerkengels.html", "");
	
	menu.showMenu();
}