//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("newsid", "News", "My current Projects",  null, null);
	menu.addItem("resumeid", "Resume", "View my resume",  "resume.htm", null);
	menu.addItem("photoid", "Photos", "View my photos",  null, null);
	menu.addItem("commercialid", "Commercials", "",  null, null);
	menu.addItem("voiceoverid", "Voice Over Demo", "Listen to my voiceover",  null, null);
	menu.addItem("contactid", "Contact", "Contact Jeffrey",  "contact.htm", null);
	menu.addItem("linksid", "Affiliations", "Organizations I work with",  null, null);
	menu.addItem("homeid", "Home", "Return to main screen",  "index.htm", null);

	menu.addSubItem("newsid", "Current Project", "Current Project",  "current.htm", "")
    //menu.addSubItem("newsid", "News", "News",  "news.htm", "");
	//menu.addSubItem("newsid", "News Archive", "News Archive",  "newsarchive.htm", "");
	//menu.addSubItem("newsid", "Reviews", "Reviews",  "reviews.htm", "");
	
//	menu.addSubItem("resumeid", "Resume", "",  "resume.htm", "");
//	menu.addSubItem("resumeid", "Resume (pdf format)", "",  "jeffreynauman_resume.pdf", "_blank");
//	menu.addSubItem("resumeid", "Academic CV", "",  "jeffreynauman_CV.pdf", "_blank");

	menu.addSubItem("photoid", "Comp Card", "",  "compcard.htm", "");
	menu.addSubItem("photoid", "Commercial Print", "",  "print.htm", "");
	menu.addSubItem("photoid", "Production Photos", "", "productionphotos.htm", "");	
	
	menu.addSubItem("commercialid", "Optimum HD", "",  "optimum.htm", "");
	menu.addSubItem("commercialid", "The Midlifes", "",  "themidlifes.htm", "");
	menu.addSubItem("commercialid", "Go, Diego, Go!", "",  "diego.htm", "");
	menu.addSubItem("commercialid", "Official Payments Commercial", "",  "officialpayments.htm", "");
//	menu.addSubItem("commercialid", "Obesity Task Force", "",  "obesitypsa.htm", "");
	menu.addSubItem("commercialid", "NHL/Sprint Interactive Game", "",  "nhl.htm", "");
//	menu.addSubItem("commercialid", "History Channel", "",  "historychannel.htm", "");
//	menu.addSubItem("commercialid", "Spike TV", "",  "spiketv.htm", "");
	
	menu.addSubItem("voiceoverid", "voiceover (flash player)", "",  "voiceover.htm", "");
	menu.addSubItem("voiceoverid", "voicover (mp3 format)", "",  "Voice_Demo.mp3", "");
		
	menu.addSubItem("linksid", "Actors' Equity Association", "",  "http://www.actorsequity.org", "_blank");
	menu.addSubItem("linksid", "Partial Comfort Productions", "",  "http://www.partialcomfort.org", "_blank");
	menu.addSubItem("linksid", "Open Jar Productions", "",  "http://www.openjarproductions.com", "_blank");

	
	menu.showMenu();
}