//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("Aboutme", "About Artist", "About Artist",  null, null);
	menu.addItem("Watercolour", "Watercolour Galleries", "Watercolour Galleries",  null, null);
	menu.addItem("Illustration", "Illustration Galleries", "Illustration Galleries",  null, null);
	menu.addItem("Painting", "PaintingClass", "PaintingClass",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("Home", "Home", "Home", "http://www.seahkamchuan.com/index.htm", "");

	menu.addSubItem("Aboutme", "Introduction", "Introduction",  "http://www.seahkamchuan.com/Introduction/index.htm", ""); 
	menu.addSubItem("Aboutme", "Biodata 1", "Biodata 1",  "http://www.seahkamchuan.com/biodata1/index.htm", "");
	menu.addSubItem("Aboutme", "Biodata 2", "Biodata 2",  "http://www.seahkamchuan.com/biodata2/index.htm", "");
	menu.addSubItem("Aboutme", "Publication", "Publication",  "http://www.seahkamchuan.com/publication/index.htm", "");
	menu.addSubItem("Aboutme", "Contact", "Contact",  "mailto:skcseah@singnet.com.sg", "");
	
	menu.addSubItem("Watercolour", "Watercolour Galleries", "Watercolour Galleries",  "http://www.seahkamchuan.com/watercolourgallery/index.htm", "");
	menu.addSubItem("Watercolour", "Scenary", "Scenary",  "http://www.seahkamchuan.com/watercolourgallery/scenarywatercolour/index.htm", "");
	menu.addSubItem("Watercolour", "Still Life", "Still Life",  "http://www.seahkamchuan.com/watercolourgallery/stilllifewatercolour/index.htm", "");
	menu.addSubItem("Watercolour", "Line and Wash", "Line and Wash",  "http://www.seahkamchuan.com/watercolourgallery/linenwash_watercolour1/index.htm", "");
	menu.addSubItem("Watercolour", "Figurative", "Figurative",  "http://www.seahkamchuan.com/watercolourgallery/figurativewatercolour/index.htm", "");
	menu.addSubItem("Watercolour", "Florals", "Florals",  "http://www.seahkamchuan.com/watercolourgallery/floralswatercolour/index.htm", "");
		
	menu.addSubItem("Illustration", "Illustration Galleries", "Illustration Galleries",  "http://www.seahkamchuan.com/illustrationgallery/index.htm", "");
	menu.addSubItem("Illustration", "Architecture", "Architecture",  "http://www.seahkamchuan.com/illustrationgallery/architecture/index.htm", "");
	menu.addSubItem("Illustration", "Stylist", "Stylist",  "http://www.seahkamchuan.com/illustrationgallery/stylist/index.htm", "");
	menu.addSubItem("Illustration", "Detail", "Detail",  "http://www.seahkamchuan.com/illustrationgallery/detail/index.htm", "");
	menu.addSubItem("Illustration", "Black & White", "Black & White",  "http://www.seahkamchuan.com/illustrationgallery/black&whitelines/index.htm", "");
		
	menu.addSubItem("Painting", "About Class", "About Class",  "http://www.seahkamchuan.com/paintingclass/1PC_classes/index.htm", "");
	menu.addSubItem("Painting", "Demonstration", "Demonstration",  "http://www.seahkamchuan.com/paintingclass/2PC_demo/index.htm", "");
	menu.addSubItem("Painting", "Student's Gallery", "Student's Gallery", "http://www.seahkamchuan.com/paintingclass/3PC_gallery/index.htm", "");
	menu.addSubItem("Painting", "Workshops", "Workshops",  "http://www.seahkamchuan.com/paintingclass/4PC_workshops/index.htm", "");
	menu.addSubItem("Painting", "Events", "Events",  "http://www.seahkamchuan.com/paintingclass/5PC_events/index.htm", "");
	
	menu.addSubItem("miscid", "Sitemap", "Sitemap",  "http://www.seahkamchuan.com/Sitemap/index.htm", "");
	menu.addSubItem("miscid", "Links", "Links",  "http://www.seahkamchuan.com/Links/index.htm", "");

	menu.showMenu();
}