//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",  "index.shtml", null);
	menu.addItem("aboutusid", "About Us", "About Us",  null, null);
	menu.addItem("servicesid", "Services", "Services",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);

	menu.addSubItem("aboutusid", "C&C and our mission", "C&C and our mission",  "about.htm", "_self");
	menu.addSubItem("aboutusid", "About the DJs", "About the DJs",  "the_team.htm", "_self");
	menu.addSubItem("aboutusid", "Testomonials", "Testomonials",  "testomonials.htm", "_self");

	menu.addSubItem("servicesid", "DJ and MC Services", "DJ and MC Services", "dj_and_mc.htm","_self");
	menu.addSubItem("servicesid", "Our Sound Systems", "Our Sound Systems", "sound_systems.htm", "_self");
	menu.addSubItem("servicesid", "Our Light Shows", "Our Light Shows",  "light_shows.htm", "_self");
	menu.addSubItem("servicesid", "Request Our Services", "Request Our Services", "request.htm", "_self");

	menu.addSubItem("linksid", "Vegas", "Vegas",  "http://www.vegasaddict.com", "_blank");
	menu.addSubItem("linksid", "Disc Golf", "Disc Golf",  "http://www.par-two.com", "_blank");
	menu.addSubItem("linksid", "Virtual Society", "Virtual Society", "http://www.virtualsociety.org", "_blank");

	menu.showMenu();
}
