//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

mainLoc = "http://www.ivetaimage.com/";
shopLoc = "http://shop.ivetaimage.com";

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "home", "",  mainLoc + "start.php", null);
	menu.addItem("singerid", "singer", "",  mainLoc + "singer.php", null);
	menu.addItem("dancerid", "dancer", "",  mainLoc + "dancer.php", null);
	menu.addItem("modelid", "model", "",  mainLoc + "model2.php", null);
	menu.addItem("recentid", "recent events&media", "",  mainLoc + "recevents.php", null);
	menu.addItem("shopid", "shop", "",  shopLoc, null);
	menu.addItem("contactmeid", "contact me", "",  null, null);
	menu.addItem("mailinglistid", "members list", "Subscribing here will enable you to recieve news, VIP invitations and current event notifications.",  mainLoc + "mailinglist.php", null);
	menu.addItem("whoiamid", "my talent", "",  mainLoc + "whoiam.php#MyTalent", null);
	menu.addItem("biographyid", "bio/resume", "",  mainLoc + "biography.php", null);

	
	
	menu.addSubItem("contactmeid", "as a model", "",  mainLoc + "contactme.php?as=model", "");
	menu.addSubItem("contactmeid", "as a singer", "",  mainLoc + "contactme.php?as=singer", "");
	menu.addSubItem("contactmeid", "as a dancer", "",  mainLoc + "contactme.php?as=dancer", "");
	//menu.addSubItem("contactmeid", "for presentation", "",  mainLoc + "contactme.php?as=presentation", "");

      menu.addSubItem("whoiamid", "my virtues", "",  mainLoc + "whoiam.php#MyVirtues", "");
	menu.addSubItem("whoiamid", "my beliefs", "",  mainLoc + "whoiam.php#MyBeliefs", "");
	
	
	menu.addSubItem("recentid", "upcoming performances", "",  mainLoc + "recevents.php#upcoming_events", "");
	menu.addSubItem("recentid", "news/media", "",  mainLoc + "recevents.php#news_media", "");
	menu.addSubItem("recentid", "new photosessions", "",  mainLoc + "recevents.php#photosessions", "");
	menu.addSubItem("recentid", "latest performances", "",  mainLoc + "recevents.php#latest_performances", "");
	
	//menu.addSubItem("shopid", "shop@ivetaimage.com", "",  "http://ivetaimage.com/ecommerce/os/catalog/default.php", "_blank");

	menu.showMenu();
}